@InterfaceAudience.Public public class RawInteger extends Object implements DataType<Integer>
DataType
for interacting with values encoded using
Bytes.putInt(byte[], int, int)
. Intended to make it easier to
transition away from direct use of Bytes
.Constructor and Description |
---|
RawInteger() |
Modifier and Type | Method and Description |
---|---|
Integer |
decode(PositionedByteRange src)
Read an instance of
T from the buffer src . |
int |
decodeInt(byte[] buff,
int offset)
Read an
int value from the buffer buff . |
int |
encode(PositionedByteRange dst,
Integer val)
Write instance
val into buffer dst . |
Class<Integer> |
encodedClass()
Inform consumers over what type this
DataType operates. |
int |
encodedLength(Integer val)
Inform consumers how long the encoded
byte[] will be. |
int |
encodeInt(byte[] buff,
int offset,
int val)
Write instance
val into buffer buff . |
Order |
getOrder()
Retrieve the sort
Order imposed by this data type, or null when
natural ordering is not preserved. |
boolean |
isNullable()
Indicates whether this instance supports encoding null values.
|
boolean |
isOrderPreserving()
Indicates whether this instance writes encoded
byte[] 's
which preserve the natural sort order of the unencoded value. |
boolean |
isSkippable()
Indicates whether this instance is able to skip over it's encoded value.
|
int |
skip(PositionedByteRange src)
Skip
src 's position forward over one encoded value. |
public RawInteger()
public boolean isOrderPreserving()
DataType
byte[]
's
which preserve the natural sort order of the unencoded value.isOrderPreserving
in interface DataType<Integer>
true
when natural order is preserved,
false
otherwise.public Order getOrder()
DataType
Order
imposed by this data type, or null when
natural ordering is not preserved. Value is either ascending or
descending. Default is assumed to be Order.ASCENDING
.public boolean isNullable()
DataType
DataType
s that support null should treat null as comparing
less than any non-null value for default sort ordering purposes.isNullable
in interface DataType<Integer>
true
when null is supported, false
otherwise.public boolean isSkippable()
DataType
DataType
s that are not skippable can only be used as the
right-most field of a Struct
.isSkippable
in interface DataType<Integer>
public int encodedLength(Integer val)
DataType
byte[]
will be.encodedLength
in interface DataType<Integer>
val
- The value to check.val
.apublic Class<Integer> encodedClass()
DataType
DataType
operates. Useful
when working with bare DataType
instances.encodedClass
in interface DataType<Integer>
public int skip(PositionedByteRange src)
DataType
src
's position forward over one encoded value.public Integer decode(PositionedByteRange src)
DataType
T
from the buffer src
.public int encode(PositionedByteRange dst, Integer val)
DataType
val
into buffer dst
.public int decodeInt(byte[] buff, int offset)
int
value from the buffer buff
.public int encodeInt(byte[] buff, int offset, int val)
val
into buffer buff
.Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.