Uses of Package
org.apache.hadoop.hbase.types

Package
Description
This package provides the definition and implementation of HBase's extensible data type API.
  • Class
    Description
    DataType is the base class for all HBase data types.
    Wraps an existing DataType implementation as a fixed-length version of itself.
    A byte[] of variable-length.
    An alternative to OrderedBlob for use by Struct fields that do not terminate the fields list.
    Base class for data types backed by the OrderedBytes encoding implementations.
    A float of 32-bits using a fixed-length encoding.
    A double of 64-bits using a fixed-length encoding.
    A short of 16-bits using a fixed-length encoding.
    An int of 32-bits using a fixed-length encoding.
    A long of 64-bits using a fixed-length encoding.
    A byte of 8-bits using a fixed-length encoding.
    An Number of arbitrary precision and variable-length encoding.
    A String of variable-length.
    A base-class for DataType implementations backed by protobuf.
    An DataType for interacting with variable-length values encoded using Bytes.putBytes(byte[], int, byte[], int, int).
    An DataType for interacting with values encoded using Bytes.toBytes(String).
    Struct is a simple DataType for implementing "compound rowkey" and "compound qualifier" schema design strategies.
    A helper for building Struct instances.
    An Iterator over encoded Struct members.
    Wraps an existing DataType implementation as a terminated version of itself.
    The Union family of DataTypes encode one of a fixed set of Objects.
    The Union family of DataTypes encode one of a fixed collection of Objects.