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

Packages that use org.apache.hadoop.hbase.CellBuilder
Package
Description
 
Provides HBase Client
  • 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)
     
  • Uses of org.apache.hadoop.hbase.CellBuilder in org.apache.hadoop.hbase.client

    Methods in org.apache.hadoop.hbase.client that return org.apache.hadoop.hbase.CellBuilder in in
    Modifier and Type
    Method
    Description
    org.apache.hadoop.hbase.CellBuilder
    Append.getCellBuilder(org.apache.hadoop.hbase.CellBuilderType type)
     
    org.apache.hadoop.hbase.CellBuilder
    Delete.getCellBuilder(org.apache.hadoop.hbase.CellBuilderType type)
     
    org.apache.hadoop.hbase.CellBuilder
    Increment.getCellBuilder(org.apache.hadoop.hbase.CellBuilderType type)
     
    org.apache.hadoop.hbase.CellBuilder
    Mutation.getCellBuilder()
    get a CellBuilder instance that already has relevant Type and Row set.
    abstract org.apache.hadoop.hbase.CellBuilder
    Mutation.getCellBuilder(org.apache.hadoop.hbase.CellBuilderType cellBuilderType)
    get a CellBuilder instance that already has relevant Type and Row set.
    protected final org.apache.hadoop.hbase.CellBuilder
    Mutation.getCellBuilder(org.apache.hadoop.hbase.CellBuilderType cellBuilderType, org.apache.hadoop.hbase.Cell.Type cellType)
    get a CellBuilder instance that already has relevant Type and Row set.
    org.apache.hadoop.hbase.CellBuilder
    Put.getCellBuilder(org.apache.hadoop.hbase.CellBuilderType type)