Uses of Class
com.nhncorp.neptune.client.Cell.Key

Packages that use Cell.Key
com.nhncorp.neptune.client Neptune Client API, Shell, Scanner, Utility 
 

Uses of Cell.Key in com.nhncorp.neptune.client
 

Fields in com.nhncorp.neptune.client declared as Cell.Key
static Cell.Key Cell.Key.EMPTY_KEY
           
 

Methods in com.nhncorp.neptune.client that return Cell.Key
 Cell.Key ScanCell.getCellKey()
           
 Cell.Key CellFilter.getCellKey()
           
 Cell.Key Cell.getKey()
           
 

Methods in com.nhncorp.neptune.client that return types with arguments of type Cell.Key
 java.util.Map<java.lang.String,java.util.TreeMap<Cell.Key,Cell>> Row.getAllCells()
           
 java.util.TreeMap<Cell.Key,Cell> Row.getCellMap(java.lang.String columnName)
          Return Map of Cells
 java.util.TreeMap<Cell.Key,Cell> Row.getCellMaps(java.lang.String columnName)
          Deprecated. Use getCellMap()
 

Methods in com.nhncorp.neptune.client with parameters of type Cell.Key
 byte[] NTable.get(Row.Key rowKey, java.lang.String columnName, Cell.Key cellKey)
          Retrive data the application stored by put method
 Cell Row.getCell(java.lang.String columnName, Cell.Key cellKey)
          Return Cell object.
 void NTable.remove(Row.Key rowKey, java.lang.String columnName, Cell.Key cellKey)
          Remove a Cell in a Row
 void ScanCell.setCellKey(Cell.Key cellKey)
           
 void CellFilter.setColumn(java.lang.String columnName, Cell.Key cellKey)
           
 void Cell.setKey(Cell.Key key)
           
 

Method parameters in com.nhncorp.neptune.client with type arguments of type Cell.Key
 void Row.setAllCells(java.util.Map<java.lang.String,java.util.TreeMap<Cell.Key,Cell>> cells)
           
 

Constructors in com.nhncorp.neptune.client with parameters of type Cell.Key
Cell(Cell.Key key)
           
Cell(Cell.Key key, byte[] bytes)
           
Cell(Cell.Key key, byte[] bytes, long timestamp)
           
CellFilter(java.lang.String columnName, Cell.Key cellKey)