Uses of Interface
org.apache.hadoop.hbase.CellBuilder
Packages that use CellBuilder
Package
Description
Provides HBase Client
-
Uses of CellBuilder in org.apache.hadoop.hbase
Subinterfaces of CellBuilder in org.apache.hadoop.hbaseModifier 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).Classes in org.apache.hadoop.hbase that implement CellBuilderModifier and TypeClassDescriptionclass
(package private) class
(package private) class
Methods in org.apache.hadoop.hbase that return CellBuilderModifier 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
Methods in org.apache.hadoop.hbase.client that return CellBuilderModifier 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
Fields in org.apache.hadoop.hbase.coprocessor.example declared as CellBuilder