static org.apache.hadoop.hbase.Cell.Type
PrivateCellUtil.code2Type(byte code)
org.apache.hadoop.hbase.Cell.Type
Cell.getType()
Returns the type of cell in a human readable format using Cell.Type
.
default org.apache.hadoop.hbase.Cell.Type
ExtendedCell.getType()
Typically, at server side, you'd better always use the ExtendedCell.getTypeByte()
as this method
does not expose the Maximum
and Minimum
because they will not be returned to
client, but at server side, we do have cells with these types so if you use this method it will
cause exceptions.
static org.apache.hadoop.hbase.Cell.Type
PrivateCellUtil.toType(byte type)
static org.apache.hadoop.hbase.Cell.Type
Cell.Type.valueOf(String name)
static org.apache.hadoop.hbase.Cell.Type[]
Cell.Type.values()
org.apache.hadoop.hbase.CellBuilder
CellBuilder.setType(org.apache.hadoop.hbase.Cell.Type type)
org.apache.hadoop.hbase.ExtendedCellBuilder
ExtendedCellBuilder.setType(org.apache.hadoop.hbase.Cell.Type type)
org.apache.hadoop.hbase.ExtendedCellBuilder
ExtendedCellBuilderImpl.setType(org.apache.hadoop.hbase.Cell.Type type)
org.apache.hadoop.hbase.RawCellBuilder
RawCellBuilder.setType(org.apache.hadoop.hbase.Cell.Type type)
static org.apache.hadoop.hbase.KeyValue.Type
PrivateCellUtil.toTypeByte(org.apache.hadoop.hbase.Cell.Type type)