Uses of Interface
org.apache.hadoop.hbase.CellBuilder

Packages that use org.apache.hadoop.hbase.CellBuilder
Package
Description
 
  • Uses of org.apache.hadoop.hbase.CellBuilder in org.apache.hadoop.hbase

    Subinterfaces of org.apache.hadoop.hbase.CellBuilder in in org.apache.hadoop.hbase
    Modifier and Type
    Interface
    Description
    interface 
    org.apache.hadoop.hbase.ExtendedCellBuilder
    For internal purpose.
    interface 
    org.apache.hadoop.hbase.RawCellBuilder
    Allows creating a cell with Tag An instance of this type can be acquired by using RegionCoprocessorEnvironment#getCellBuilder (for prod code) and RawCellBuilderFactory (for unit tests).
    Classes in org.apache.hadoop.hbase that implement org.apache.hadoop.hbase.CellBuilder in in
    Modifier and Type
    Class
    Description
    class 
    org.apache.hadoop.hbase.ExtendedCellBuilderImpl
     
    Methods in org.apache.hadoop.hbase that return org.apache.hadoop.hbase.CellBuilder in in
    Modifier and Type
    Method
    Description
    org.apache.hadoop.hbase.CellBuilder
    CellBuilder.clear()
    Remove all internal elements from builder.
    static org.apache.hadoop.hbase.CellBuilder
    CellBuilderFactory.create(org.apache.hadoop.hbase.CellBuilderType type)
    Create a CellBuilder instance.
    org.apache.hadoop.hbase.CellBuilder
    CellBuilder.setFamily(byte[] family)
     
    org.apache.hadoop.hbase.CellBuilder
    CellBuilder.setFamily(byte[] family, int fOffset, int fLength)
     
    org.apache.hadoop.hbase.CellBuilder
    CellBuilder.setQualifier(byte[] qualifier)
     
    org.apache.hadoop.hbase.CellBuilder
    CellBuilder.setQualifier(byte[] qualifier, int qOffset, int qLength)
     
    org.apache.hadoop.hbase.CellBuilder
    CellBuilder.setRow(byte[] row)
     
    org.apache.hadoop.hbase.CellBuilder
    CellBuilder.setRow(byte[] row, int rOffset, int rLength)
     
    org.apache.hadoop.hbase.CellBuilder
    CellBuilder.setTimestamp(long timestamp)
     
    org.apache.hadoop.hbase.CellBuilder
    CellBuilder.setType(org.apache.hadoop.hbase.Cell.Type type)
     
    org.apache.hadoop.hbase.CellBuilder
    CellBuilder.setValue(byte[] value)
     
    org.apache.hadoop.hbase.CellBuilder
    CellBuilder.setValue(byte[] value, int vOffset, int vLength)