@Public public class ByteValue extends Object implements NormalizableKey<ByteValue>, ResettableValue<ByteValue>, CopyableValue<ByteValue>
byte (signed 8 bit integer).| Constructor and Description |
|---|
ByteValue()
Initializes the encapsulated byte with 0.
|
ByteValue(byte value)
Initializes the encapsulated byte with the provided value.
|
| Modifier and Type | Method and Description |
|---|---|
int |
compareTo(ByteValue o) |
ByteValue |
copy()
Performs a deep copy of this object into a new instance.
|
void |
copy(DataInputView source,
DataOutputView target)
Copies the next serialized instance from
source to target. |
void |
copyNormalizedKey(MemorySegment target,
int offset,
int len)
Writes a normalized key for the given record into the target byte array, starting at the specified position
an writing exactly the given number of bytes.
|
void |
copyTo(ByteValue target)
Performs a deep copy of this object into the
target instance. |
boolean |
equals(Object obj)
Compares the object on equality with another object.
|
int |
getBinaryLength()
Gets the length of the data type when it is serialized, in bytes.
|
int |
getMaxNormalizedKeyLen()
Gets the maximal length of normalized keys that the data type would produce to determine
the order of instances solely by the normalized key.
|
byte |
getValue()
Returns the value of the encapsulated byte.
|
int |
hashCode()
All keys must override the hash-code function to generate proper deterministic hash codes,
based on their contents.
|
void |
read(DataInputView in)
Reads the object's internal data from the given data input view.
|
void |
setValue(byte value)
Sets the encapsulated byte to the specified value.
|
void |
setValue(ByteValue value)
Sets the encapsulated value to another value
|
String |
toString() |
void |
write(DataOutputView out)
Writes the object's internal data to the given data output view.
|
public ByteValue()
public ByteValue(byte value)
value - Initial value of the encapsulated byte.public byte getValue()
public void setValue(byte value)
value - the new value of the encapsulated byte.public void setValue(ByteValue value)
ResettableValuesetValue in interface ResettableValue<ByteValue>value - the new value of the encapsulated valuepublic void read(DataInputView in) throws IOException
IOReadableWritableread in interface IOReadableWritablein - the input view to read the data fromIOException - thrown if any error occurs while reading from the input streampublic void write(DataOutputView out) throws IOException
IOReadableWritablewrite in interface IOReadableWritableout - the output view to receive the data.IOException - thrown if any error occurs while writing to the output streampublic int compareTo(ByteValue o)
compareTo in interface Comparable<ByteValue>public int hashCode()
Keypublic boolean equals(Object obj)
Keypublic int getMaxNormalizedKeyLen()
NormalizableKeyInteger.MAX_VALUE
is interpreted as infinite.
For example, 32 bit integers return four, while Strings (potentially unlimited in length) return
Integer.MAX_VALUE.
getMaxNormalizedKeyLen in interface NormalizableKey<ByteValue>public void copyNormalizedKey(MemorySegment target, int offset, int len)
NormalizableKeyint byteI = bytes[i] & 0xFF;
If the meaningful part of the normalized key takes less than the given number of bytes, than it must be padded.
Padding is typically required for variable length data types, such as strings. The padding uses a special
character, either 0 or 0xff, depending on whether shorter values are sorted to the beginning or
the end.
copyNormalizedKey in interface NormalizableKey<ByteValue>target - The memory segment to put the normalized key bytes into.offset - The offset in the byte array where the normalized key's bytes should start.len - The number of bytes to put.public int getBinaryLength()
CopyableValuegetBinaryLength in interface CopyableValue<ByteValue>-1, if variable length.public void copyTo(ByteValue target)
CopyableValuetarget instance.copyTo in interface CopyableValue<ByteValue>target - Object to copy into.public ByteValue copy()
CopyableValueCopyableValue when storing multiple objects. With object reuse
a deep copy must be created and type erasure prevents calling new.copy in interface CopyableValue<ByteValue>public void copy(DataInputView source, DataOutputView target) throws IOException
CopyableValuesource to target.
This method is equivalent to calling IOReadableWritable.read(DataInputView)
followed by IOReadableWritable.write(DataOutputView) but does not require
intermediate deserialization.copy in interface CopyableValue<ByteValue>source - Data source for serialized instance.target - Data target for serialized instance.IOExceptionIOReadableWritableCopyright © 2014–2018 The Apache Software Foundation. All rights reserved.