Uses of Interface
org.apache.hadoop.hbase.util.PositionedByteRange

Packages that use org.apache.hadoop.hbase.util.PositionedByteRange
Package
Description
This package provides the definition and implementation of HBase's extensible data type API.
 
  • Uses of org.apache.hadoop.hbase.util.PositionedByteRange in org.apache.hadoop.hbase.types

    Fields in org.apache.hadoop.hbase.types declared as org.apache.hadoop.hbase.util.PositionedByteRange in in
    Modifier and Type
    Field
    Description
    protected final org.apache.hadoop.hbase.util.PositionedByteRange
    StructIterator.src
     
    Methods in org.apache.hadoop.hbase.types with parameters of type org.apache.hadoop.hbase.util.PositionedByteRange in in
    Modifier and Type
    Method
    Description
    T
    DataType.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Read an instance of T from the buffer src.
    T
    FixedLengthWrapper.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    byte[]
    OrderedBlob.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    byte[]
    OrderedBlobVar.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    OrderedFloat32.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    OrderedFloat64.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    OrderedInt16.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    OrderedInt32.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    OrderedInt64.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    OrderedInt8.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    OrderedNumeric.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    OrderedString.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    org.apache.hadoop.hbase.protobuf.generated.CellProtos.Cell
    PBCell.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    RawByte.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    byte[]
    RawBytes.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    byte[]
    RawBytes.decode(org.apache.hadoop.hbase.util.PositionedByteRange src, int length)
    Read a byte[] from the buffer src.
    byte[]
    RawBytesFixedLength.decode(org.apache.hadoop.hbase.util.PositionedByteRange src, int length)
    Read a byte[] from the buffer src.
    byte[]
    RawBytesTerminated.decode(org.apache.hadoop.hbase.util.PositionedByteRange src, int length)
    Read a byte[] from the buffer src.
    RawDouble.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    RawFloat.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    RawInteger.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    RawLong.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    RawShort.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    RawString.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    Struct.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    Struct.decode(org.apache.hadoop.hbase.util.PositionedByteRange src, int index)
    Read the field at index.
    T
    TerminatedWrapper.decode(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    A
    Union2.decodeA(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Read an instance of the first type parameter from buffer src.
    B
    Union2.decodeB(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Read an instance of the second type parameter from buffer src.
    byte
    OrderedInt8.decodeByte(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Read a byte value from the buffer src.
    C
    Union3.decodeC(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Read an instance of the third type parameter from buffer src.
    D
    Union4.decodeD(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Read an instance of the fourth type parameter from buffer src.
    double
    OrderedFloat64.decodeDouble(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Read a double value from the buffer src.
    double
    OrderedNumeric.decodeDouble(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Read a double value from the buffer src.
    float
    OrderedFloat32.decodeFloat(org.apache.hadoop.hbase.util.PositionedByteRange dst)
    Read a float value from the buffer dst.
    int
    OrderedInt32.decodeInt(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Read an int value from the buffer src.
    long
    OrderedInt64.decodeLong(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Read a long value from the buffer src.
    long
    OrderedNumeric.decodeLong(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Read a long value from the buffer src.
    short
    OrderedInt16.decodeShort(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Read a short value from the buffer src.
    int
    DataType.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, T val)
    Write instance val into buffer dst.
    int
    FixedLengthWrapper.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, T val)
     
    int
    OrderedBlob.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, byte[] val)
     
    int
    OrderedBlob.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, byte[] val, int voff, int vlen)
    Write a subset of val to dst.
    int
    OrderedBlobVar.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, byte[] val)
     
    int
    OrderedBlobVar.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, byte[] val, int voff, int vlen)
    Write a subset of val to buff.
    int
    OrderedFloat32.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, Float val)
     
    int
    OrderedFloat64.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, Double val)
     
    int
    OrderedInt16.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, Short val)
     
    int
    OrderedInt32.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, Integer val)
     
    int
    OrderedInt64.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, Long val)
     
    int
    OrderedInt8.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, Byte val)
     
    int
    OrderedNumeric.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, Number val)
     
    int
    OrderedString.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, String val)
     
    int
    PBCell.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, org.apache.hadoop.hbase.protobuf.generated.CellProtos.Cell val)
     
    int
    RawByte.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, Byte val)
     
    int
    RawBytes.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, byte[] val)
     
    int
    RawBytes.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, byte[] val, int voff, int vlen)
    Write val into dst, respecting voff and vlen.
    int
    RawBytesFixedLength.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, byte[] val, int voff, int vlen)
    Write val into buff, respecting offset and length.
    int
    RawBytesTerminated.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, byte[] val, int voff, int vlen)
    Write val into dst, respecting offset and length.
    int
    RawDouble.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, Double val)
     
    int
    RawFloat.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, Float val)
     
    int
    RawInteger.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, Integer val)
     
    int
    RawLong.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, Long val)
     
    int
    RawShort.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, Short val)
     
    int
    RawString.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, String val)
     
    int
    Struct.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, Object[] val)
     
    int
    TerminatedWrapper.encode(org.apache.hadoop.hbase.util.PositionedByteRange dst, T val)
    Write instance val into buffer dst.
    int
    OrderedInt8.encodeByte(org.apache.hadoop.hbase.util.PositionedByteRange dst, byte val)
    Write instance val into buffer dst.
    int
    OrderedFloat64.encodeDouble(org.apache.hadoop.hbase.util.PositionedByteRange dst, double val)
    Write instance val into buffer dst.
    int
    OrderedNumeric.encodeDouble(org.apache.hadoop.hbase.util.PositionedByteRange dst, double val)
    Write instance val into buffer dst.
    int
    OrderedFloat32.encodeFloat(org.apache.hadoop.hbase.util.PositionedByteRange dst, float val)
    Write instance val into buffer buff.
    int
    OrderedInt32.encodeInt(org.apache.hadoop.hbase.util.PositionedByteRange dst, int val)
    Write instance val into buffer dst.
    int
    OrderedInt64.encodeLong(org.apache.hadoop.hbase.util.PositionedByteRange dst, long val)
    Write instance val into buffer dst.
    int
    OrderedNumeric.encodeLong(org.apache.hadoop.hbase.util.PositionedByteRange dst, long val)
    Write instance val into buffer dst.
    int
    OrderedInt16.encodeShort(org.apache.hadoop.hbase.util.PositionedByteRange dst, short val)
    Write instance val into buffer dst.
    static com.google.protobuf.CodedInputStream
    PBType.inputStreamFromByteRange(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Deprecated.
    Create a CodedInputStream from a PositionedByteRange.
    org.apache.hadoop.hbase.types.StructIterator
    Struct.iterator(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Retrieve an Iterator over the values encoded in src.
    static com.google.protobuf.CodedOutputStream
    PBType.outputStreamFromByteRange(org.apache.hadoop.hbase.util.PositionedByteRange dst)
    Deprecated.
    Create a CodedOutputStream from a PositionedByteRange.
    int
    DataType.skip(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Skip src's position forward over one encoded value.
    int
    FixedLengthWrapper.skip(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    int
    OrderedBytesBase.skip(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    int
    PBCell.skip(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    int
    RawByte.skip(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    int
    RawBytes.skip(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    int
    RawDouble.skip(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    int
    RawFloat.skip(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    int
    RawInteger.skip(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    int
    RawLong.skip(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    int
    RawShort.skip(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    int
    RawString.skip(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    int
    Struct.skip(org.apache.hadoop.hbase.util.PositionedByteRange src)
     
    int
    TerminatedWrapper.skip(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Skip src's position forward over one encoded value.
    protected int
    TerminatedWrapper.terminatorPosition(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Return the position at which term begins within src, or -1 if term is not found.
    Constructors in org.apache.hadoop.hbase.types with parameters of type org.apache.hadoop.hbase.util.PositionedByteRange in in
    Modifier
    Constructor
    Description
     
    StructIterator(org.apache.hadoop.hbase.util.PositionedByteRange src, org.apache.hadoop.hbase.types.DataType[] types)
    Construct StructIterator over the values encoded in src using the specified types definition.
  • Uses of org.apache.hadoop.hbase.util.PositionedByteRange in org.apache.hadoop.hbase.util

    Classes in org.apache.hadoop.hbase.util that implement org.apache.hadoop.hbase.util.PositionedByteRange in in
    Modifier and Type
    Class
    Description
    class 
    org.apache.hadoop.hbase.util.AbstractPositionedByteRange
    Extends the basic SimpleByteRange implementation with position support.
    class 
    org.apache.hadoop.hbase.util.SimplePositionedByteRange
    Extends the basic SimpleMutableByteRange implementation with position support and it is a readonly version.
    class 
    org.apache.hadoop.hbase.util.SimplePositionedMutableByteRange
    Extends the basic AbstractPositionedByteRange implementation with position support and it is a mutable version.
    Methods in org.apache.hadoop.hbase.util that return org.apache.hadoop.hbase.util.PositionedByteRange in in
    Modifier and Type
    Method
    Description
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.deepCopy()
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.deepCopy()
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.deepCopy()
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    AbstractPositionedByteRange.get(byte[] dst)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    AbstractPositionedByteRange.get(byte[] dst, int offset, int length)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    AbstractPositionedByteRange.get(int index, byte[] dst)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    AbstractPositionedByteRange.get(int index, byte[] dst, int offset, int length)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.get(byte[] dst)
    Fill dst with bytes from the range, starting from position.
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.get(byte[] dst, int offset, int length)
    Fill dst with bytes from the range, starting from the current position.
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.get(int index, byte[] dst)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.get(int index, byte[] dst, int offset, int length)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.get(int index, byte[] dst)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.get(int index, byte[] dst, int offset, int length)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.get(int index, byte[] dst)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.get(int index, byte[] dst, int offset, int length)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.put(byte val)
    Store val at the next position in this range.
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.put(byte[] val)
    Store the content of val in this range, starting at the next position.
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.put(byte[] val, int offset, int length)
    Store length bytes from val into this range.
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.put(int index, byte val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.put(int index, byte[] val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.put(int index, byte[] val, int offset, int length)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.put(byte val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.put(byte[] val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.put(byte[] val, int offset, int length)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.put(int index, byte val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.put(int index, byte[] val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.put(int index, byte[] val, int offset, int length)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.put(byte val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.put(byte[] val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.put(byte[] val, int offset, int length)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.put(int index, byte val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.put(int index, byte[] val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.put(int index, byte[] val, int offset, int length)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.putInt(int val)
    Store int val at the next position in this range.
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.putInt(int index, int val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.putInt(int val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.putInt(int index, int val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.putInt(int val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.putInt(int index, int val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.putLong(int index, long val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.putLong(long val)
    Store long val at the next position in this range.
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.putLong(int index, long val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.putLong(long val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.putLong(int index, long val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.putLong(long val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.putShort(int index, short val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.putShort(short val)
    Store short val at the next position in this range.
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.putShort(int index, short val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.putShort(short val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.putShort(int index, short val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.putShort(short val)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    AbstractPositionedByteRange.set(byte[] bytes)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    AbstractPositionedByteRange.set(byte[] bytes, int offset, int length)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    AbstractPositionedByteRange.set(int capacity)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.set(byte[] bytes)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.set(byte[] bytes, int offset, int length)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.set(int capacity)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.set(byte[] bytes)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.set(byte[] bytes, int offset, int length)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.set(int capacity)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.set(byte[] bytes)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.set(byte[] bytes, int offset, int length)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.set(int capacity)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    AbstractPositionedByteRange.setLength(int length)
    Update the length of this range.
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.setLength(int length)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.setLength(int length)
    Update the length of this range.
    org.apache.hadoop.hbase.util.PositionedByteRange
    AbstractPositionedByteRange.setLimit(int limit)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.setLimit(int limit)
    Limits the byte range upto a specified value.
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.setLimit(int limit)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    AbstractPositionedByteRange.setOffset(int offset)
    Update the beginning of this range.
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.setOffset(int offset)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.setOffset(int offset)
    Update the beginning of this range.
    org.apache.hadoop.hbase.util.PositionedByteRange
    AbstractPositionedByteRange.setPosition(int position)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.setPosition(int position)
    Update the position index.
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.shallowCopy()
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.shallowCopy()
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.shallowCopy()
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.shallowCopySubRange(int innerOffset, int copyLength)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.shallowCopySubRange(int innerOffset, int copyLength)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.shallowCopySubRange(int innerOffset, int copyLength)
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    PositionedByteRange.unset()
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedByteRange.unset()
     
    org.apache.hadoop.hbase.util.PositionedByteRange
    SimplePositionedMutableByteRange.unset()
     
    Methods in org.apache.hadoop.hbase.util with parameters of type org.apache.hadoop.hbase.util.PositionedByteRange in in
    Modifier and Type
    Method
    Description
    static byte[]
    OrderedBytes.decodeBlobCopy(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Decode a Blob value, byte-for-byte copy.
    static byte[]
    OrderedBytes.decodeBlobVar(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Decode a blob value that was encoded using BlobVar encoding.
    static float
    OrderedBytes.decodeFloat32(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Decode a 32-bit floating point value using the fixed-length encoding.
    static double
    OrderedBytes.decodeFloat64(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Decode a 64-bit floating point value using the fixed-length encoding.
    static short
    OrderedBytes.decodeInt16(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Decode an int16 value.
    static int
    OrderedBytes.decodeInt32(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Decode an int32 value.
    static long
    OrderedBytes.decodeInt64(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Decode an int64 value.
    static byte
    OrderedBytes.decodeInt8(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Decode an int8 value.
    static BigDecimal
    OrderedBytes.decodeNumericAsBigDecimal(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Decode a BigDecimal value from the variable-length encoding.
    static double
    OrderedBytes.decodeNumericAsDouble(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Decode a primitive double value from the Numeric encoding.
    static long
    OrderedBytes.decodeNumericAsLong(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Decode a primitive long value from the Numeric encoding.
    static String
    OrderedBytes.decodeString(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Decode a String value.
    static int
    OrderedBytes.encodeBlobCopy(org.apache.hadoop.hbase.util.PositionedByteRange dst, byte[] val, int voff, int vlen, org.apache.hadoop.hbase.util.Order ord)
    Encode a Blob value as a byte-for-byte copy.
    static int
    OrderedBytes.encodeBlobCopy(org.apache.hadoop.hbase.util.PositionedByteRange dst, byte[] val, org.apache.hadoop.hbase.util.Order ord)
    Encode a Blob value as a byte-for-byte copy.
    static int
    OrderedBytes.encodeBlobVar(org.apache.hadoop.hbase.util.PositionedByteRange dst, byte[] val, int voff, int vlen, org.apache.hadoop.hbase.util.Order ord)
    Encode a Blob value using a modified varint encoding scheme.
    static int
    OrderedBytes.encodeBlobVar(org.apache.hadoop.hbase.util.PositionedByteRange dst, byte[] val, org.apache.hadoop.hbase.util.Order ord)
    Encode a blob value using a modified varint encoding scheme.
    static int
    OrderedBytes.encodeFloat32(org.apache.hadoop.hbase.util.PositionedByteRange dst, float val, org.apache.hadoop.hbase.util.Order ord)
    Encode a 32-bit floating point value using the fixed-length encoding.
    static int
    OrderedBytes.encodeFloat64(org.apache.hadoop.hbase.util.PositionedByteRange dst, double val, org.apache.hadoop.hbase.util.Order ord)
    Encode a 64-bit floating point value using the fixed-length encoding.
    static int
    OrderedBytes.encodeInt16(org.apache.hadoop.hbase.util.PositionedByteRange dst, short val, org.apache.hadoop.hbase.util.Order ord)
    Encode an int16 value using the fixed-length encoding.
    static int
    OrderedBytes.encodeInt32(org.apache.hadoop.hbase.util.PositionedByteRange dst, int val, org.apache.hadoop.hbase.util.Order ord)
    Encode an int32 value using the fixed-length encoding.
    static int
    OrderedBytes.encodeInt64(org.apache.hadoop.hbase.util.PositionedByteRange dst, long val, org.apache.hadoop.hbase.util.Order ord)
    Encode an int64 value using the fixed-length encoding.
    static int
    OrderedBytes.encodeInt8(org.apache.hadoop.hbase.util.PositionedByteRange dst, byte val, org.apache.hadoop.hbase.util.Order ord)
    Encode an int8 value using the fixed-length encoding.
    static int
    OrderedBytes.encodeNull(org.apache.hadoop.hbase.util.PositionedByteRange dst, org.apache.hadoop.hbase.util.Order ord)
    Encode a null value.
    static int
    OrderedBytes.encodeNumeric(org.apache.hadoop.hbase.util.PositionedByteRange dst, double val, org.apache.hadoop.hbase.util.Order ord)
    Encode a numerical value using the variable-length encoding.
    static int
    OrderedBytes.encodeNumeric(org.apache.hadoop.hbase.util.PositionedByteRange dst, long val, org.apache.hadoop.hbase.util.Order ord)
    Encode a numerical value using the variable-length encoding.
    static int
    OrderedBytes.encodeNumeric(org.apache.hadoop.hbase.util.PositionedByteRange dst, BigDecimal val, org.apache.hadoop.hbase.util.Order ord)
    Encode a numerical value using the variable-length encoding.
    static int
    OrderedBytes.encodeString(org.apache.hadoop.hbase.util.PositionedByteRange dst, String val, org.apache.hadoop.hbase.util.Order ord)
    Encode a String value.
    static boolean
    OrderedBytes.isBlobCopy(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Return true when the next encoded value in src uses BlobCopy encoding, false otherwise.
    static boolean
    OrderedBytes.isBlobVar(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Return true when the next encoded value in src uses BlobVar encoding, false otherwise.
    static boolean
    OrderedBytes.isEncodedValue(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Returns true when src appears to be positioned an encoded value, false otherwise.
    static boolean
    OrderedBytes.isFixedFloat32(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Return true when the next encoded value in src uses fixed-width Float32 encoding, false otherwise.
    static boolean
    OrderedBytes.isFixedFloat64(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Return true when the next encoded value in src uses fixed-width Float64 encoding, false otherwise.
    static boolean
    OrderedBytes.isFixedInt16(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Return true when the next encoded value in src uses fixed-width Int16 encoding, false otherwise.
    static boolean
    OrderedBytes.isFixedInt32(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Return true when the next encoded value in src uses fixed-width Int32 encoding, false otherwise.
    static boolean
    OrderedBytes.isFixedInt64(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Return true when the next encoded value in src uses fixed-width Int64 encoding, false otherwise.
    static boolean
    OrderedBytes.isFixedInt8(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Return true when the next encoded value in src uses fixed-width Int8 encoding, false otherwise.
    static boolean
    OrderedBytes.isNull(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Return true when the next encoded value in src is null, false otherwise.
    static boolean
    OrderedBytes.isNumeric(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Return true when the next encoded value in src uses Numeric encoding, false otherwise.
    static boolean
    OrderedBytes.isNumericInfinite(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Return true when the next encoded value in src uses Numeric encoding and is Infinite, false otherwise.
    static boolean
    OrderedBytes.isNumericNaN(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Return true when the next encoded value in src uses Numeric encoding and is NaN, false otherwise.
    static boolean
    OrderedBytes.isNumericZero(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Return true when the next encoded value in src uses Numeric encoding and is 0, false otherwise.
    static boolean
    OrderedBytes.isText(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Return true when the next encoded value in src uses Text encoding, false otherwise.
    static int
    OrderedBytes.length(org.apache.hadoop.hbase.util.PositionedByteRange buff)
    Return the number of encoded entries remaining in buff.
    static int
    OrderedBytes.skip(org.apache.hadoop.hbase.util.PositionedByteRange src)
    Skip buff's position forward over one encoded value.