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.parallel.hadoop TabletInputFormat for Hadoop MapReduce 
 

Uses of Row in com.nhncorp.neptune.client
 

Methods in com.nhncorp.neptune.client that return Row
 Row NTable.get(Row.Key rowKey)
          Retrieve all the columns and their values in Row matching with rowKey If the Row contains too much data, it may cause serious problem.
 Row NTable.get(Row.Key rowKey, java.lang.String columnName)
          Retrieve data stored in Neptune
 Row NTable.get(Row.Key rowKey, java.lang.String[] columnNames)
          Retrieve data with row key and specific column names.
 Row NTable.get(RowFilter rowFilter)
          Retrieve data stored in Neptune with a specific filter.
 Row[] NTable.gets(RowFilter rowFilter)
          This method is different with other get methods in applying the operation to multiple rows.
 

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)
          Put Row data in this table.
 void DirectUploader.put(Row row)
          Put data to DirectUploader
 void NTable.put(Row row, boolean systemTimestamp)
          Put Row data in this table.
 void AsyncDataReceiver.receive(Row.Key rowKey, Row row)
          Called when single Row fetched.
 

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)