|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.hadoop.hbase.types.RawByte
@InterfaceAudience.Public @InterfaceStability.Evolving public class RawByte
An DataType for interacting with values encoded using
Bytes.putByte(byte[], int, byte). Intended to make it easier to
transition away from direct use of Bytes.
Bytes.putByte(byte[], int, byte)| Constructor Summary | |
|---|---|
RawByte()
|
|
| Method Summary | |
|---|---|
Byte |
decode(PositionedByteRange src)
Read an instance of T from the buffer src. |
byte |
decodeByte(byte[] buff,
int offset)
Read a byte value from the buffer buff. |
int |
encode(PositionedByteRange dst,
Byte val)
Write instance val into buffer dst. |
int |
encodeByte(byte[] buff,
int offset,
byte val)
Write instance val into buffer buff. |
Class<Byte> |
encodedClass()
Inform consumers over what type this DataType operates. |
int |
encodedLength(Byte val)
Inform consumers how long the encoded byte[] will be. |
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. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public RawByte()
| Method Detail |
|---|
public boolean isOrderPreserving()
DataTypebyte[]'s
which preserve the natural sort order of the unencoded value.
isOrderPreserving in interface DataType<Byte>true when natural order is preserved,
false otherwise.public Order getOrder()
DataTypeOrder 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.
getOrder in interface DataType<Byte>public boolean isNullable()
DataTypeDataTypes that support null should treat null as comparing
less than any non-null value for default sort ordering purposes.
isNullable in interface DataType<Byte>true when null is supported, false otherwise.public boolean isSkippable()
DataTypeDataTypes that are not skippable can only be used as the
right-most field of a Struct.
isSkippable in interface DataType<Byte>public int encodedLength(Byte val)
DataTypebyte[] will be.
encodedLength in interface DataType<Byte>val - The value to check.
val.apublic Class<Byte> encodedClass()
DataTypeDataType operates. Useful
when working with bare DataType instances.
encodedClass in interface DataType<Byte>public int skip(PositionedByteRange src)
DataTypesrc's position forward over one encoded value.
skip in interface DataType<Byte>src - the buffer containing the encoded value.
public Byte decode(PositionedByteRange src)
DataTypeT from the buffer src.
decode in interface DataType<Byte>src - the buffer containing the encoded value.
public int encode(PositionedByteRange dst,
Byte val)
DataTypeval into buffer dst.
encode in interface DataType<Byte>dst - the buffer containing the encoded value.val - the value to encode onto dst.
public byte decodeByte(byte[] buff,
int offset)
byte value from the buffer buff.
public int encodeByte(byte[] buff,
int offset,
byte val)
val into buffer buff.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||