|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.helidb.lang.serializer.IntegerSerializer
org.helidb.lang.serializer.IntegerNullSerializer
public class IntegerNullSerializer
A Serializer
for Integer
values that may be null
. Integer
values are serialized to a four bytes long, big-endian
byte array. A special, configurable value is used to represent null
.
The singleton instance INSTANCE
uses Integer.MIN_VALUE
to
represent null
values. It may be used instead of instantiating this
class.
IntegerSerializer
,
ConfigurableLengthIntegerNullSerializer
,
Integer
Field Summary | |
---|---|
static IntegerNullSerializer |
INSTANCE
The singleton instance. |
Fields inherited from class org.helidb.lang.serializer.IntegerSerializer |
---|
DATA_SIZE |
Constructor Summary | |
---|---|
IntegerNullSerializer(int nullValue)
Instantiate this class. |
Method Summary | |
---|---|
Integer |
interpret(byte[] barr)
Interpret the data in the byte array to an object of the type
handled by the Serializer implementation. |
Integer |
interpret(byte[] barr,
int offset,
int length)
Interpret the data in the byte array to an object of the type
handled by the Serializer implementation. |
boolean |
isNullValuesPermitted()
Does this serializer permit null values? |
byte[] |
serialize(Integer value)
Serialize the supplied object into a new byte array. |
int |
serialize(Integer value,
byte[] barr,
int offset)
Serialize the supplied object into the byte array. |
Methods inherited from class org.helidb.lang.serializer.IntegerSerializer |
---|
encodeInteger, getInteger, getSerializedSize, read, read, readInteger, readInteger |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final IntegerNullSerializer INSTANCE
Integer.MIN_VALUE
to represent null
values. That
null
value has the most significant bit of the most significant
byte set, which may be important to know when working with
Hasher
:s.
Constructor Detail |
---|
public IntegerNullSerializer(int nullValue)
nullValue
- The value used to represent null
Integer
:s.Method Detail |
---|
public Integer interpret(byte[] barr, int offset, int length)
Serializer
byte
array to an object of the type
handled by the Serializer
implementation.
interpret
in interface Serializer<Integer>
interpret
in class IntegerSerializer
barr
- The byte
array containing the data.offset
- The start position of the data.length
- The length of the data.
Serializer.interpret(byte[])
public Integer interpret(byte[] barr)
Serializer
byte
array to an object of the type
handled by the Serializer
implementation.
interpret
in interface Serializer<Integer>
interpret
in class IntegerSerializer
barr
- The byte
array containing the data.
Serializer.interpret(byte[], int, int)
public int serialize(Integer value, byte[] barr, int offset)
Serializer
byte
array.
serialize
in interface Serializer<Integer>
serialize
in class IntegerSerializer
value
- The object to serialize.barr
- The byte array to serialize it to.offset
- The start position to write data at in the byte array.
public byte[] serialize(Integer value)
Serializer
byte
array.
serialize
in interface Serializer<Integer>
serialize
in class IntegerSerializer
value
- The object to serialize.
byte
array.public boolean isNullValuesPermitted()
Serializer
null
values?
isNullValuesPermitted
in interface Serializer<Integer>
isNullValuesPermitted
in class IntegerSerializer
true
, always.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |