Class Union2<A,B>

java.lang.Object
org.apache.hadoop.hbase.types.Union2<A,B>
All Implemented Interfaces:
DataType<Object>
Direct Known Subclasses:
Union3

@Public public abstract class Union2<A,B> extends Object implements DataType<Object>
The Union family of DataTypes encode one of a fixed set of Objects. They provide convenience methods which handle type casting on your behalf.
  • Field Details

  • Constructor Details

    • Union2

      public Union2(DataType<A> typeA, DataType<B> typeB)
      Create an instance of Union2 over the set of specified types.
  • Method Details

    • isOrderPreserving

      public boolean isOrderPreserving()
      Description copied from interface: DataType
      Indicates whether this instance writes encoded byte[]'s which preserve the natural sort order of the unencoded value.
      Specified by:
      isOrderPreserving in interface DataType<A>
      Returns:
      true when natural order is preserved, false otherwise.
    • getOrder

      public Order getOrder()
      Description copied from interface: DataType
      Retrieve the sort Order 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.
      Specified by:
      getOrder in interface DataType<A>
    • isNullable

      public boolean isNullable()
      Description copied from interface: DataType
      Indicates whether this instance supports encoding null values. This depends on the implementation details of the encoding format. All DataTypes that support null should treat null as comparing less than any non-null value for default sort ordering purposes.
      Specified by:
      isNullable in interface DataType<A>
      Returns:
      true when null is supported, false otherwise.
    • isSkippable

      public boolean isSkippable()
      Description copied from interface: DataType
      Indicates whether this instance is able to skip over it's encoded value. DataTypes that are not skippable can only be used as the right-most field of a Struct.
      Specified by:
      isSkippable in interface DataType<A>
    • encodedClass

      Description copied from interface: DataType
      Inform consumers over what type this DataType operates. Useful when working with bare DataType instances.
      Specified by:
      encodedClass in interface DataType<A>
    • decodeA

      Read an instance of the first type parameter from buffer src.
    • decodeB

      Read an instance of the second type parameter from buffer src.