Uses of Enum
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.types
Fields 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()Deprecated.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 OrderModifierConstructorDescriptionprotectedOrderedBlob(Order order) protectedOrderedBlobVar(Order order) protectedOrderedBytesBase(Order order) protectedOrderedFloat32(Order order) protectedOrderedFloat64(Order order) protectedOrderedInt16(Order order) protectedOrderedInt32(Order order) protectedOrderedInt64(Order order) protectedOrderedInt8(Order order) protectedOrderedNumeric(Order order) protectedOrderedString(Order order) protectedRawBytesFixedLength(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.protectedRawStringFixedLength(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.util
Methods in org.apache.hadoop.hbase.util that return OrderModifier and TypeMethodDescriptionstatic OrderReturns the enum constant of this type with the specified name.static Order[]Order.values()Returns an array containing the constants of this enum type, 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.