Uses of Package
com.nhncorp.neptune.client

Packages that use com.nhncorp.neptune.client
com.nhncorp.neptune.client Neptune Client API, Shell, Scanner, Utility 
com.nhncorp.neptune.parallel.hadoop TabletInputFormat for Hadoop MapReduce 
com.nhncorp.neptune.tablet ValueObject for Table, Tablet 
 

Classes in com.nhncorp.neptune.client used by com.nhncorp.neptune.client
AbstractKey
          모든 Key class의 최상위 클래스
AsyncDataReceiver
          NTable has a get() method which allows applications to asynchronously receive data.
Cell
          Neptune stores multiple values in a point of Row-Column.
Cell.Key
          Cell.Key class
Cell.Value
          Cell내에 저장되어 있는 실제 값.
CellFilter
          RowFilter and CellFilter are normally used to get or scan for complex search condition
DirectUploader
          DirectUploader is used to upload large data set.
NTable
          NTable represents a table in Neptune and each table contains data of applications with distributed and persistent manner.
Row
          Row is Value Object which represents Table's row.
Row.Key
          Row.Key class
RowFilter
          RowFilter and CellFilter are normally used to get or scan for complex search condition
NTable ntable = NTable.openTable(...); RowFilter rowFilter = new RowFilter(new Row.Key("rk1"), OP_LIKE); CellFilter cellFilter = new CellFilter("Column1"); cellFilter.setStartTimestamp(Long.MIN_VALUE); cellFilter.setEndTimestamp(Long.MAX_VALUE); rowFilter.addCellFilter(cellFilter); Row[] rows = ntable.gets(rowFilter);
ScanCell
          Value Object which is returned by TableScanner
 

Classes in com.nhncorp.neptune.client used by com.nhncorp.neptune.parallel.hadoop
Row
          Row is Value Object which represents Table's row.
Row.Key
          Row.Key class
RowFilter
          RowFilter and CellFilter are normally used to get or scan for complex search condition
NTable ntable = NTable.openTable(...); RowFilter rowFilter = new RowFilter(new Row.Key("rk1"), OP_LIKE); CellFilter cellFilter = new CellFilter("Column1"); cellFilter.setStartTimestamp(Long.MIN_VALUE); cellFilter.setEndTimestamp(Long.MAX_VALUE); rowFilter.addCellFilter(cellFilter); Row[] rows = ntable.gets(rowFilter);
ScanCell
          Value Object which is returned by TableScanner
 

Classes in com.nhncorp.neptune.client used by com.nhncorp.neptune.tablet
Row.Key
          Row.Key class