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

Packages that use Cell.Key
com.nhncorp.neptune.client Neptune Client API, Shell, Scanner, Utility 
com.nhncorp.neptune.client.shell.select   
com.nhncorp.neptune.tablet Table, Tablet 관련 Value Object 
com.nhncorp.neptune.tabletserver TabletServer 
 

Uses of Cell.Key in com.nhncorp.neptune.client
 

Fields in com.nhncorp.neptune.client declared as Cell.Key
static Cell.Key Cell.Key.EMPTY_KEY
           
 

Methods in com.nhncorp.neptune.client that return Cell.Key
 Cell.Key CellFilter.getCellKey()
           
 Cell.Key ScanCell.getCellKey()
           
 Cell.Key Cell.getKey()
           
 

Methods in com.nhncorp.neptune.client with parameters of type Cell.Key
 byte[] NTable.get(Row.Key rowKey, java.lang.String columnName, Cell.Key cellKey)
          데이터를 조회한다.
 void NTable.remove(Row.Key rowKey, java.lang.String columnName, Cell.Key cellKey)
          특정 cellKey에 해당하는 값을 삭제한다.
 void ScanCell.setCellKey(Cell.Key cellKey)
           
 void CellFilter.setColumn(java.lang.String columnName, Cell.Key cellKey)
           
 void Cell.setKey(Cell.Key key)
           
 

Constructors in com.nhncorp.neptune.client with parameters of type Cell.Key
Cell(Cell.Key key)
           
Cell(Cell.Key key, byte[] bytes)
           
Cell(Cell.Key key, byte[] bytes, long timestamp)
           
CellFilter(java.lang.String columnName, Cell.Key cellKey)
           
 

Uses of Cell.Key in com.nhncorp.neptune.client.shell.select
 

Methods in com.nhncorp.neptune.client.shell.select that return types with arguments of type Cell.Key
 java.util.Map<java.lang.String,Cell.Key> SelectQuery.getCellKeys()
           
 

Uses of Cell.Key in com.nhncorp.neptune.tablet
 

Methods in com.nhncorp.neptune.tablet that return Cell.Key
 Cell.Key ColumnValue.getCellKey()
           
 

Methods in com.nhncorp.neptune.tablet with parameters of type Cell.Key
 void ColumnValue.setCellKey(Cell.Key cellKey)
           
 

Constructors in com.nhncorp.neptune.tablet with parameters of type Cell.Key
ColumnValue(Row.Key rowKey, Cell.Key cellKey, byte[] value)
           
ColumnValue(Row.Key rowKey, Cell.Key cellKey, byte[] value, boolean deleted)
           
ColumnValue(Row.Key rowKey, Cell.Key cellKey, byte[] value, boolean deleted, long timestamp)
           
ColumnValue(Row.Key rowKey, Cell.Key cellKey, byte[] value, long timestamp)
           
 

Uses of Cell.Key in com.nhncorp.neptune.tabletserver
 

Methods in com.nhncorp.neptune.tabletserver that return Cell.Key
 Cell.Key MapFileIndexRecord.getCellKey()
           
 Cell.Key ChangeLog.getCellKey()
           
 

Methods in com.nhncorp.neptune.tabletserver with parameters of type Cell.Key
 void TabletServer.deleteColumnValue(TxId txId, java.lang.String columnName, Cell.Key columnKey)
           
 void DataServiceProtocol.deleteColumnValue(TxId txId, java.lang.String columnName, Cell.Key columnKey)
           
 boolean Tablet.deleteColumnValue(TxId txId, java.lang.String columnName, Cell.Key columnKey, long timestamp)
          특정 Row의 컬럼 값을 삭제한다.
 MapFileIndexRecord TabletMapFile.findNearest(Row.Key targetRowKey, Cell.Key cellKey)
           
 ColumnValue ColumnCollection.get(Row.Key rowKey, Cell.Key columnKey)
           
 ColumnValue Tablet.get(Row.Key rowKey, java.lang.String columnName, Cell.Key cellKey)
          데이터를 조회한다.
 ColumnValue TabletServer.get(java.lang.String tabletName, Row.Key rowKey, java.lang.String columnName, Cell.Key columnKey)
           
 ColumnValue DataServiceProtocol.get(java.lang.String tabletName, Row.Key rowKey, java.lang.String columnName, Cell.Key columnKey)
           
 ColumnValue[][] ColumnCollection.getAllVersion(Row.Key rowKey, Cell.Key columnKey)
           
 Searchable MemorySSTableIF.getSearcher(Row.Key rowKey, java.lang.String columnName, Cell.Key cellKey)
           
 Searchable MemorySSTable.getSearcher(Row.Key rowKey, java.lang.String columnName, Cell.Key columnKey)
           
 java.util.List<Searchable> DiskSSTableIF.getSearchers(Row.Key rowKey, java.lang.String columnName, Cell.Key columnKey)
           
 java.util.List<Searchable> DiskSSTable.getSearchers(Row.Key rowKey, java.lang.String columnName, Cell.Key columnKey)
           
 ValueCollection ColumnCollection.getValueCollection(Row.Key rowKey, Cell.Key columnKey)
           
 ValueCollection TabletMapFile.scan(Row.Key rowKey, Cell.Key columnKey)
           
 ColumnValue RecordSearcher.search(Row.Key rowKey, java.lang.String columnName, Cell.Key columnKey)
           
 ColumnValue MemorySSTable.search(Row.Key rowKey, java.lang.String columnName, Cell.Key columnKey)
           
 ColumnValue DiskSSTable.search(Row.Key rowKey, java.lang.String columnName, Cell.Key columnKey)
           
 ValueCollection DiskSSTable.searchAllVersion(Row.Key rowKey, java.lang.String columnName, Cell.Key columnKey)
           
 

Constructors in com.nhncorp.neptune.tabletserver with parameters of type Cell.Key
ChangeLog(int operation, java.lang.String tableName, Row.Key rowKey, java.lang.String columnName, Cell.Key columnKey, long timestamp, byte[] value)
           
MapFileIndexRecord(Row.Key rowKey, Cell.Key cellKey)
          IndexRecord 비교 대상이 되는 객체 생성을 위한 클래스
MapFileIndexRecord(Row.Key rowKey, Cell.Key columnKey, long timestamp, long fileOffset)