Uses of Interface
org.apache.hadoop.hbase.CellBuilder
Package
Description
Provides HBase Client
-
Uses of CellBuilder in org.apache.hadoop.hbase
Modifier and TypeInterfaceDescriptioninterface
For internal purpose.interface
Allows creating a cell withTag
An instance of this type can be acquired by using RegionCoprocessorEnvironment#getCellBuilder (for prod code) andRawCellBuilderFactory
(for unit tests).Modifier and TypeClassDescriptionclass
(package private) class
(package private) class
Modifier and TypeMethodDescriptionCellBuilder.clear()
Remove all internal elements from builder.static CellBuilder
CellBuilderFactory.create
(CellBuilderType type) Create a CellBuilder instance.CellBuilder.setFamily
(byte[] family) CellBuilder.setFamily
(byte[] family, int fOffset, int fLength) CellBuilder.setQualifier
(byte[] qualifier) CellBuilder.setQualifier
(byte[] qualifier, int qOffset, int qLength) CellBuilder.setRow
(byte[] row) CellBuilder.setRow
(byte[] row, int rOffset, int rLength) CellBuilder.setTimestamp
(long timestamp) CellBuilder.setValue
(byte[] value) CellBuilder.setValue
(byte[] value, int vOffset, int vLength) -
Uses of CellBuilder in org.apache.hadoop.hbase.client
Modifier and TypeMethodDescriptionAppend.getCellBuilder
(CellBuilderType type) Delete.getCellBuilder
(CellBuilderType type) Increment.getCellBuilder
(CellBuilderType type) Mutation.getCellBuilder()
get a CellBuilder instance that already has relevant Type and Row set.abstract CellBuilder
Mutation.getCellBuilder
(CellBuilderType cellBuilderType) get a CellBuilder instance that already has relevant Type and Row set.protected final CellBuilder
Mutation.getCellBuilder
(CellBuilderType cellBuilderType, Cell.Type cellType) get a CellBuilder instance that already has relevant Type and Row set.Put.getCellBuilder
(CellBuilderType type) -
Uses of CellBuilder in org.apache.hadoop.hbase.coprocessor.example