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

Packages that use Cell
org.apache.hadoop.hbase   
org.apache.hadoop.hbase.codec   
org.apache.hadoop.hbase.io   
 

Uses of Cell in org.apache.hadoop.hbase
 

Classes in org.apache.hadoop.hbase that implement Cell
 class KeyValue
          An HBase Key/Value.
 

Methods in org.apache.hadoop.hbase that return Cell
static Cell CellUtil.createCell(byte[] row, byte[] family, byte[] qualifier, long timestamp, byte type, byte[] value)
           
 Cell CellScanner.current()
           
 

Methods in org.apache.hadoop.hbase with parameters of type Cell
protected static int KeyValueUtil.appendKeyToByteArrayWithoutValue(Cell cell, byte[] output, int offset)
           
static int KeyValueUtil.appendToByteArray(Cell cell, byte[] output, int offset)
          copy key and value
static boolean CellComparator.areKeyLengthsEqual(Cell a, Cell b)
          lengths
static boolean CellComparator.areRowLengthsEqual(Cell a, Cell b)
           
 int CellComparator.compare(Cell a, Cell b)
           
static int CellComparator.compareStatic(Cell a, Cell b)
           
static int CellUtil.copyFamilyTo(Cell cell, byte[] destination, int destinationOffset)
           
static ByteBuffer KeyValueUtil.copyKeyToNewByteBuffer(Cell cell)
           
static int CellUtil.copyQualifierTo(Cell cell, byte[] destination, int destinationOffset)
           
static int CellUtil.copyRowTo(Cell cell, byte[] destination, int destinationOffset)
          copyTo
static byte[] KeyValueUtil.copyToNewByteArray(Cell cell)
           
static ByteBuffer KeyValueUtil.copyToNewByteBuffer(Cell cell)
           
static KeyValue KeyValueUtil.copyToNewKeyValue(Cell cell)
          copy key only
static int CellUtil.copyValueTo(Cell cell, byte[] destination, int destinationOffset)
           
static CellScanner CellUtil.createCellScanner(Cell[] cellArray)
           
static KeyValue KeyValueUtil.createFirstKeyInIncrementedRow(Cell in)
          Increment the row bytes and clear the other fields
static KeyValue KeyValueUtil.createFirstKeyInNextRow(Cell in)
          Append single byte 0x00 to the end of the input row key
static KeyValue KeyValueUtil.ensureKeyValue(Cell cell)
           
static boolean CellComparator.equals(Cell a, Cell b)
          equals
static boolean CellComparator.equalsFamily(Cell a, Cell b)
           
static boolean CellComparator.equalsIgnoreMvccVersion(Cell a, Cell b)
          special case for KeyValue.equals
static boolean CellComparator.equalsQualifier(Cell a, Cell b)
           
static boolean CellComparator.equalsRow(Cell a, Cell b)
           
static boolean CellComparator.equalsTimestamp(Cell a, Cell b)
           
static boolean CellComparator.equalsType(Cell a, Cell b)
           
static ByteRange CellUtil.fillFamilyRange(Cell cell, ByteRange range)
           
static ByteRange CellUtil.fillQualifierRange(Cell cell, ByteRange range)
           
static ByteRange CellUtil.fillRowRange(Cell cell, ByteRange range)
          ByteRange
static byte[] CellUtil.getFamilyArray(Cell cell)
           
static byte[] CellUtil.getQualifierArray(Cell cell)
           
static byte[] CellUtil.getRowArray(Cell cell)
          get individual arrays for tests
static byte CellUtil.getRowByte(Cell cell, int index)
          misc
static byte[] CellUtil.getValueArray(Cell cell)
           
static ByteBuffer CellUtil.getValueBufferShallowCopy(Cell cell)
           
static int CellComparator.hashCode(Cell cell)
          Returns a hash code that is always the same for two Cells having a matching equals(..) result.
protected static int KeyValueUtil.keyLength(Cell cell)
           
static int KeyValueUtil.length(Cell cell)
          length
 

Method parameters in org.apache.hadoop.hbase with type arguments of type Cell
static CellScanner CellUtil.createCellScanner(Iterable<Cell> cellIterable)
           
static CellScanner CellUtil.createCellScanner(Iterator<Cell> cells)
           
static CellScanner CellUtil.createCellScanner(NavigableMap<byte[],List<? extends Cell>> map)
          Flatten the map of cells out under the CellScanner
 

Uses of Cell in org.apache.hadoop.hbase.codec
 

Methods in org.apache.hadoop.hbase.codec that return Cell
 Cell BaseDecoder.current()
           
protected  Cell KeyValueCodec.KeyValueDecoder.parseCell()
           
protected abstract  Cell BaseDecoder.parseCell()
           
 

Methods in org.apache.hadoop.hbase.codec with parameters of type Cell
 void KeyValueCodec.KeyValueEncoder.write(Cell cell)
           
abstract  void BaseEncoder.write(Cell cell)
           
 

Uses of Cell in org.apache.hadoop.hbase.io
 

Methods in org.apache.hadoop.hbase.io with parameters of type Cell
 void CellOutputStream.write(Cell cell)
          Implementation must copy the entire state of the Cell.
 



Copyright © 2013 The Apache Software Foundation. All Rights Reserved.