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

Packages that use Cell
org.apache.hadoop.hbase.client Provides HBase Client 
org.apache.hadoop.hbase.filter Provides row-level filters applied to HRegion scan results during calls to ResultScanner.next()
org.apache.hadoop.hbase.io   
org.apache.hadoop.hbase.rest Provides an HBase REST service. 
org.apache.hadoop.hbase.rest.descriptors   
org.apache.hadoop.hbase.rest.serializer   
org.apache.hadoop.hbase.thrift Provides an HBase Thrift service. 
org.apache.hadoop.hbase.util   
 

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

Methods in org.apache.hadoop.hbase.client that return Cell
 Cell HTable.get(byte[] row, byte[] column)
          Deprecated. As of hbase 0.20.0, replaced by HTable.get(Get)
 Cell[] HTable.get(byte[] row, byte[] column, int numVersions)
          Deprecated. As of hbase 0.20.0, replaced by HTable.get(Get)
 Cell[] HTable.get(byte[] row, byte[] column, long timestamp, int numVersions)
          Deprecated. As of hbase 0.20.0, replaced by HTable.get(Get)
 Cell HTable.get(String row, String column)
          Deprecated. As of hbase 0.20.0, replaced by HTable.get(Get)
 Cell[] HTable.get(String row, String column, int numVersions)
          Deprecated. As of hbase 0.20.0, replaced by HTable.get(Get)
 Cell[] HTable.get(String row, String column, long timestamp, int numVersions)
          Deprecated. As of hbase 0.20.0, replaced by HTable.get(Get)
 Cell Result.getCellValue()
           
 Cell Result.getCellValue(byte[] family, byte[] qualifier)
           
 Cell[] Result.getCellValues()
           
 

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

Method parameters in org.apache.hadoop.hbase.filter with type arguments of type Cell
 boolean WhileMatchRowFilter.filterRow(SortedMap<byte[],Cell> columns)
          Deprecated.  
 boolean StopRowFilter.filterRow(SortedMap<byte[],Cell> columns)
          Deprecated. Because StopRowFilter does not examine column information, this method defaults to calling filterAllRemaining().
 boolean RowFilterSet.filterRow(SortedMap<byte[],Cell> columns)
          Deprecated.  
 boolean RowFilterInterface.filterRow(SortedMap<byte[],Cell> columns)
          Deprecated. Filter on the fully assembled row.
 boolean RegExpRowFilter.filterRow(SortedMap<byte[],Cell> columns)
          Deprecated.  
 boolean PrefixRowFilter.filterRow(SortedMap<byte[],Cell> columns)
          Deprecated.  
 boolean PageRowFilter.filterRow(SortedMap<byte[],Cell> columns)
          Deprecated.  
 boolean ColumnValueFilter.filterRow(SortedMap<byte[],Cell> columns)
          Deprecated.  
 void RegExpRowFilter.setColumnFilters(Map<byte[],Cell> columnFilter)
          Deprecated. Column filtering has been replaced by ColumnValueFilter Set column filters for a number of columns.
 

Constructor parameters in org.apache.hadoop.hbase.filter with type arguments of type Cell
RegExpRowFilter(String rowKeyRegExp, Map<byte[],Cell> columnFilter)
          Deprecated. Column filtering has been replaced by ColumnValueFilter Constructor that takes a row key regular expression to filter on.
 

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

Methods in org.apache.hadoop.hbase.io that return Cell
static Cell[] Cell.createSingleCellArray(List<KeyValue> results)
          Deprecated.  
 Cell RowResult.get(byte[] column)
          Deprecated. Get the Cell that corresponds to column
 Cell RowResult.get(byte[] family, byte[] columnQualifier)
          Deprecated. Get a cell using seperate family, columnQualifier arguments.
 Cell RowResult.get(Object key)
          Deprecated.  
 Cell RowResult.get(String key)
          Deprecated. Get the Cell that corresponds to column, using a String key
 Cell RowResult.Entry.getValue()
           
 Cell RowResult.put(byte[] key, Cell value)
          Deprecated.  
 Cell RowResult.remove(Object key)
          Deprecated.  
 Cell RowResult.Entry.setValue(Cell c)
           
 

Methods in org.apache.hadoop.hbase.io that return types with arguments of type Cell
static HbaseMapWritable<byte[],Cell> Cell.createCells(List<KeyValue> results)
          Deprecated.  
 Set<Map.Entry<byte[],Cell>> RowResult.entrySet()
          Deprecated.  
 SortedMap<byte[],Cell> RowResult.headMap(byte[] toKey)
          Deprecated.  
 SortedMap<byte[],Cell> RowResult.subMap(byte[] fromKey, byte[] toKey)
          Deprecated.  
 SortedMap<byte[],Cell> RowResult.tailMap(byte[] fromKey)
          Deprecated.  
 Collection<Cell> RowResult.values()
          Deprecated.  
 

Methods in org.apache.hadoop.hbase.io with parameters of type Cell
 Cell RowResult.put(byte[] key, Cell value)
          Deprecated.  
 Cell RowResult.Entry.setValue(Cell c)
           
 

Constructor parameters in org.apache.hadoop.hbase.io with type arguments of type Cell
RowResult(byte[] row, HbaseMapWritable<byte[],Cell> m)
          Deprecated. Create a RowResult from a row and Cell map
 

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

Methods in org.apache.hadoop.hbase.rest that return Cell
 Cell TimestampModel.get(byte[] tableName, byte[] rowName, byte[] columnName, long timestamp)
          Deprecated. 
 Cell[] TimestampModel.get(byte[] tableName, byte[] rowName, byte[] columnName, long timestamp, int numVersions)
          Deprecated. 
 

Uses of Cell in org.apache.hadoop.hbase.rest.descriptors
 

Subclasses of Cell in org.apache.hadoop.hbase.rest.descriptors
 class RestCell
           
 

Constructors in org.apache.hadoop.hbase.rest.descriptors with parameters of type Cell
RestCell(byte[] name, Cell cell)
           
 

Uses of Cell in org.apache.hadoop.hbase.rest.serializer
 

Methods in org.apache.hadoop.hbase.rest.serializer with parameters of type Cell
 void SimpleXMLSerializer.serializeCell(Cell cell)
           
 void JSONSerializer.serializeCell(Cell cell)
           
 void IRestSerializer.serializeCell(Cell cell)
          serialize a cell object to the output stream Implementation of this method is optional, IF all the work is done in the writeOutput(Object o) method
 void SimpleXMLSerializer.serializeCellArray(Cell[] cells)
           
 void JSONSerializer.serializeCellArray(Cell[] cells)
           
 void IRestSerializer.serializeCellArray(Cell[] cells)
          serialize a Cell array to the output stream
 

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

Methods in org.apache.hadoop.hbase.thrift with parameters of type Cell
static List<org.apache.hadoop.hbase.thrift.generated.TCell> ThriftUtilities.cellFromHBase(Cell in)
          This utility method creates a list of Thrift TCell "struct" based on an Hbase Cell object.
static List<org.apache.hadoop.hbase.thrift.generated.TCell> ThriftUtilities.cellFromHBase(Cell[] in)
          This utility method creates a list of Thrift TCell "struct" based on an Hbase Cell array.
 

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

Methods in org.apache.hadoop.hbase.util with parameters of type Cell
static long Writables.cellToLong(Cell c)
           
static String Writables.cellToString(Cell c)
           
static HRegionInfo Writables.getHRegionInfo(Cell cell)
           
 



Copyright © 2009 The Apache Software Foundation