Closed Aloren closed 7 years ago
This is a server question. The client doesn't support a byte value, because the server doesn't support a byte value.
BooleanValue is not supported by the server either, but it was added on the client to provide an boolean abstraction. BooleanValue instances send/receive integers to/from the server.
Byte can be saved as integer or as long as I understood. So why not to add ByteValue as it was done for boolean?
We will look into adding ByteValue in the next release.
Java client 4.0.0 adds ByteValue.
There are multiple implementations of
Value
class, e.g.:DoubleValue
,BooleanValue
etc. If I want to store primitive of typebyte
orchar
--BlobValue
is used for storing. Why there is noByteValue
?