Uses of Enum Class
org.apache.hadoop.hbase.util.Order
Packages that use Order
Package
Description
 This package provides the definition and implementation of HBase's
 extensible data type API.
- 
Uses of Order in org.apache.hadoop.hbase.typesFields in org.apache.hadoop.hbase.types declared as OrderModifier and TypeFieldDescriptionprotected final OrderOrderedBytesBase.orderprotected final OrderRawBytes.orderprotected final OrderRawString.orderMethods in org.apache.hadoop.hbase.types that return OrderModifier and TypeMethodDescriptionDataType.getOrder()Retrieve the sortOrderimposed by this data type, or null when natural ordering is not preserved.FixedLengthWrapper.getOrder()OrderedBytesBase.getOrder()PBType.getOrder()RawByte.getOrder()RawBytes.getOrder()RawDouble.getOrder()RawFloat.getOrder()RawInteger.getOrder()RawLong.getOrder()RawShort.getOrder()RawString.getOrder()Struct.getOrder()TerminatedWrapper.getOrder()Union2.getOrder()Union3.getOrder()Union4.getOrder()Constructors in org.apache.hadoop.hbase.types with parameters of type OrderModifierConstructorDescriptionOrderedBlob(Order order) Creates a newbyte[]with variable length.OrderedBlobVar(Order order) OrderedBytesBase(Order order) OrderedFloat32(Order order) Creates a new 32-bitfloatwith a fixed-length encoding.OrderedFloat64(Order order) Creates a new 64-bitedoublewith a fixed-length encoding.OrderedInt16(Order order) Creates a new 16-bitshortwith a fixed-length encoding.OrderedInt32(Order order) Creates a new 32-bitintwith a fixed-length encoding.OrderedInt64(Order order) Creates a new 64-bitlongwith a fixed-length encoding.OrderedInt8(Order order) Creates a new 8-bitbytewith a fixed-length encoding.OrderedNumeric(Order order) Creates a newNumberof arbitrary precision and variable-length encoding.OrderedString(Order order) Creates a new variable-lengthString.Creates a newDataTypewith variable-length values.RawBytesFixedLength(Order order, int length) Create aRawBytesFixedLengthusing the specifiedorderandlength.RawBytesTerminated(Order order, byte[] term) Create aRawBytesTerminatedusing the specified terminator andorder.RawBytesTerminated(Order order, String term) Create aRawBytesTerminatedusing the specified terminator andorder.Creates a newDataTypefor interacting with values encoded usingBytes.toBytes(String).RawStringFixedLength(Order order, int length) Create aRawStringFixedLengthusing the specifiedorderandlength.RawStringTerminated(Order order, byte[] term) Create aRawStringTerminatedusing the specified terminator andorder.RawStringTerminated(Order order, String term) Create aRawStringTerminatedusing the specified terminator andorder.
- 
Uses of Order in org.apache.hadoop.hbase.utilMethods in org.apache.hadoop.hbase.util that return OrderModifier and TypeMethodDescriptionstatic OrderReturns the enum constant of this class with the specified name.static Order[]Order.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.apache.hadoop.hbase.util with parameters of type OrderModifier and TypeMethodDescriptionstatic intOrderedBytes.encodeBlobCopy(PositionedByteRange dst, byte[] val, int voff, int vlen, Order ord) Encode a Blob value as a byte-for-byte copy.static intOrderedBytes.encodeBlobCopy(PositionedByteRange dst, byte[] val, Order ord) Encode a Blob value as a byte-for-byte copy.static intOrderedBytes.encodeBlobVar(PositionedByteRange dst, byte[] val, int voff, int vlen, Order ord) Encode a Blob value using a modified varint encoding scheme.static intOrderedBytes.encodeBlobVar(PositionedByteRange dst, byte[] val, Order ord) Encode a blob value using a modified varint encoding scheme.static intOrderedBytes.encodeFloat32(PositionedByteRange dst, float val, Order ord) Encode a 32-bit floating point value using the fixed-length encoding.static intOrderedBytes.encodeFloat64(PositionedByteRange dst, double val, Order ord) Encode a 64-bit floating point value using the fixed-length encoding.static intOrderedBytes.encodeInt16(PositionedByteRange dst, short val, Order ord) Encode anint16value using the fixed-length encoding.static intOrderedBytes.encodeInt32(PositionedByteRange dst, int val, Order ord) Encode anint32value using the fixed-length encoding.static intOrderedBytes.encodeInt64(PositionedByteRange dst, long val, Order ord) Encode anint64value using the fixed-length encoding.static intOrderedBytes.encodeInt8(PositionedByteRange dst, byte val, Order ord) Encode anint8value using the fixed-length encoding.static intOrderedBytes.encodeNull(PositionedByteRange dst, Order ord) Encode a null value.static intOrderedBytes.encodeNumeric(PositionedByteRange dst, double val, Order ord) Encode a numerical value using the variable-length encoding.static intOrderedBytes.encodeNumeric(PositionedByteRange dst, long val, Order ord) Encode a numerical value using the variable-length encoding.static intOrderedBytes.encodeNumeric(PositionedByteRange dst, BigDecimal val, Order ord) Encode a numerical value using the variable-length encoding.static intOrderedBytes.encodeString(PositionedByteRange dst, String val, Order ord) Encode a String value.