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.getOne(java.lang.String columnName)
          특정 Column의 첫번째 값을 가져온다.
 

Methods in com.nhncorp.neptune.client that return types with arguments of type Cell
 java.util.Map<java.lang.String,java.util.List<Cell>> Row.getAllCells()
           
 java.util.List<Cell> Row.getCells(java.lang.String columnName)
          조회된 값에서 특정 Column의 Cell 목록을 가져온다.
 java.util.List<Cell> Row.getFirstColumnCells()
          get, scanner에서 Column 하나만 이용하여 조회한 경우 Cell 값을 가져 온다.
 

Methods in com.nhncorp.neptune.client with parameters of type Cell
 void Row.addCell(java.lang.String columnName, Cell cell)
          특정 Column에 Cell(값)을 추가한다.
 int Cell.compareTo(Cell o)
           
 

Method parameters in com.nhncorp.neptune.client with type arguments of type Cell
 void Row.addCells(java.lang.String columnName, java.util.List<Cell> paramCells)
          특정 Column에 Cell의 목록을 추가한다.
 void Row.setAllCells(java.util.Map<java.lang.String,java.util.List<Cell>> cells)