Uses of Enum Class
org.apache.hadoop.hbase.Cell.Type

Packages that use org.apache.hadoop.hbase.Cell.Type
Package
Description
 
Provides HBase Client
  • Uses of org.apache.hadoop.hbase.Cell.Type in org.apache.hadoop.hbase

    Methods in org.apache.hadoop.hbase that return org.apache.hadoop.hbase.Cell.Type in in
    Modifier and Type
    Method
    Description
    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()
     
    Methods in org.apache.hadoop.hbase with parameters of type org.apache.hadoop.hbase.Cell.Type in in
    Modifier and Type
    Method
    Description
    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)
     
  • Uses of org.apache.hadoop.hbase.Cell.Type in org.apache.hadoop.hbase.client

    Methods in org.apache.hadoop.hbase.client with parameters of type org.apache.hadoop.hbase.Cell.Type in in
    Modifier and Type
    Method
    Description
    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.