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

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

Uses of Cell in com.nhncorp.neptune.client
 

Methods in com.nhncorp.neptune.client that return Cell
 Cell Row.getCell(java.lang.String columnName, Cell.Key cellKey)
          Return Cell object.
 Cell Row.getFirst(java.lang.String columnName)
          Return first Cell object in specified column
 Cell Row.getOne(java.lang.String columnName)
          Deprecated. use getFirst()
 

Methods in com.nhncorp.neptune.client that return types with arguments of type Cell
 java.util.Map<java.lang.String,java.util.TreeMap<Cell.Key,Cell>> Row.getAllCells()
           
 java.util.List<Cell> Row.getCellList(java.lang.String columnName)
          Return cell list
 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()
 java.util.List<Cell> Row.getCells(java.lang.String columnName)
          Deprecated. Use getCellList()
 java.util.List<Cell> Row.getFirstColumnCellList()
          Return Cell list
This method must be used when called NTable.get() or scan with single column.
 java.util.List<Cell> Row.getFirstColumnCells()
          Deprecated. Use getFirstColumnCellList()
 

Methods in com.nhncorp.neptune.client with parameters of type Cell
 void Row.addCell(java.lang.String columnName, Cell newCell)
          Add Cell to specified column
 int Cell.compareTo(Cell o)
           
 

Method parameters in com.nhncorp.neptune.client with type arguments of type Cell
 void Row.addCellList(java.lang.String columnName, java.util.List<Cell> paramCells)
          Add Cell list to specified column
 void Row.addCells(java.lang.String columnName, java.util.List<Cell> paramCells)
          Deprecated. Use addCellList()
 void Row.setAllCells(java.util.Map<java.lang.String,java.util.TreeMap<Cell.Key,Cell>> cells)