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

Packages that use Row
com.nhncorp.neptune.client Neptune Client API, Shell, Scanner, Utility 
com.nhncorp.neptune.client.procedure procedure script에 대한 처리 
com.nhncorp.neptune.client.scanner scanner, ScannerFactory만 외부에 오픈되고 대부분은 protected 
com.nhncorp.neptune.master Neptune Master Server 
com.nhncorp.neptune.parallel.hadoop Table을 input으로 하는 Hadoop MapReduce job을 위한 유틸리티 
 

Uses of Row in com.nhncorp.neptune.client
 

Methods in com.nhncorp.neptune.client that return Row
 Row NTable.get(Row.Key rowKey)
          row에 있는 모든 컬럼, 컬럼내의 모든 데이터를 조회한다.
 Row NTable.get(Row.Key rowKey, java.lang.String columnName)
          데이터를 조회한다.
 Row NTable.get(Row.Key rowKey, java.lang.String[] columnNames)
          데이터를 조회한다.
 Row NTable.get(RowFilter rowFilter)
          Filter 조건에 맞는 데이터를 조회한다.여러 row에 걸친 작업은 수행하지 않는다.
 

Methods in com.nhncorp.neptune.client with parameters of type Row
static void ScanCell.addCells(Row row, java.lang.String columnName, java.util.List<ScanCell> scanCells)
           
 int Row.compareTo(Row row)
           
 void NTable.put(Row row)
          테이블에 데이터를 저장한다.
 void DirectUploader.put(Row row)
          테이블로 데이터를 upload한다.
 void NTable.put(Row row, boolean systemTimestamp)
           
 void AsyncDataReceiver.receive(Row.Key rowKey, Row row)
          하나의 row 데이터를 서버로부터 받은 즉시 호출된다.
 

Uses of Row in com.nhncorp.neptune.client.procedure
 

Methods in com.nhncorp.neptune.client.procedure that return Row
 Row Selector.querySingleRow()
          query에 RowKey가 있는 경우에는 scanner를 이용하지 않고 get을 이용하여 조회한다.
 Row Selector.select()
           
 

Uses of Row in com.nhncorp.neptune.client.scanner
 

Methods in com.nhncorp.neptune.client.scanner that return Row
 Row[] MergeScanner.RowArray.getRows()
           
 Row TableScanner.nextRow()
          현재 커서의 위치에서 다음 row 데이터를 fetch한다.
 

Methods in com.nhncorp.neptune.client.scanner with parameters of type Row
 void MergeScanner.RowArray.setRows(Row[] rows)
           
 

Uses of Row in com.nhncorp.neptune.master
 

Methods in com.nhncorp.neptune.master that return Row
 Row JspHelper.runQuery(java.lang.String query)
           
 

Uses of Row in com.nhncorp.neptune.parallel.hadoop
 

Methods in com.nhncorp.neptune.parallel.hadoop that return Row
 Row AbstractTabletInputFormat.TabletRowRecordReader.createValue()
           
 

Methods in com.nhncorp.neptune.parallel.hadoop with parameters of type Row
 boolean AbstractTabletInputFormat.TabletRowRecordReader.next(Row.Key key, Row value)