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

Packages that use NTable
com.nhncorp.neptune.client Neptune Client API, Shell, Scanner, Utility 
com.nhncorp.neptune.client.scanner scanner, ScannerFactory만 외부에 오픈되고 대부분은 protected 
 

Uses of NTable in com.nhncorp.neptune.client
 

Methods in com.nhncorp.neptune.client that return NTable
static NTable NTable.openTable(NConfiguration conf, java.lang.String tableName)
          NTable 객체를 가져온다.
static NTable NTable.openTable(NConfiguration conf, TableSchema tableSchema, boolean create)
          NTable 객체를 가져온다.
 

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

Methods in com.nhncorp.neptune.client.scanner with parameters of type NTable
static TableScanner ScannerFactory.openScanner(NTable ntable, Row.Key startRowKey, Row.Key endRowKey, java.lang.String columnName)
          주어진 범위내에서 테이블을 Scan하는 TableScanner를 오픈한다.
static TableScanner ScannerFactory.openScanner(NTable ntable, Row.Key startRowKey, Row.Key endRowKey, java.lang.String[] columns)
          여러 컬럼, Row의 범위를 지정할 수 있는 TableScanner를 오픈한다.
static TableScanner ScannerFactory.openScanner(NTable ntable, Row.Key startRowKey, Row.Key endRowKey, java.lang.String columnName, int timeout)
          주어진 범위내에서 테이블을 Scan하는 TableScanner를 오픈한다.
static TableScanner ScannerFactory.openScanner(NTable ntable, RowFilter rowFilter)
          다양한 조건(RowFilter)를 이용하여 Scan를 수행하는 TableScanner를 오픈한다.
static TableScanner ScannerFactory.openScanner(NTable ntable, RowFilter rowFilter, int timeout)
          다양한 조건(RowFilter)를 이용하여 Scan를 수행하는 TableScanner를 오픈한다.
static TableScanner ScannerFactory.openScanner(NTable ntable, java.lang.String columnName)
          TableScanner를 오픈한다.
static TableScanner ScannerFactory.openScanner(NTable ntable, java.lang.String[] columns)
          여러개의 컬럼을 동시에 Scan 하는 TableScanner를 오픈한다.