Uses of Class
com.nhncorp.neptune.tablet.TableSchema

Packages that use TableSchema
com.nhncorp.neptune.client Neptune Client API, Shell, Scanner, Utility 
com.nhncorp.neptune.tablet ValueObject for Table, Tablet 
 

Uses of TableSchema in com.nhncorp.neptune.client
 

Methods in com.nhncorp.neptune.client that return TableSchema
 TableSchema NTable.descTable()
          Retrieve table schema information of this NTable instance
 TableSchema NTable.getTableSchema()
          Return the table schema information describing this table.
static TableSchema[] NTable.listTables(NConfiguration conf)
          Returns schema information of all the tables in Neptune
 

Methods in com.nhncorp.neptune.client with parameters of type TableSchema
static void NTable.createTable(NConfiguration conf, TableSchema tableSchema)
          Create a new table according to the table schema information
static void NTable.createTable(NConfiguration conf, TableSchema tableSchema, Row.Key[] endRowKeys)
          Create a new table according to the table schma information, then split the newly created table into multiple tablets by the number of row keys specified in the parameter.
static NTable NTable.openTable(NConfiguration conf, TableSchema tableSchema, boolean create)
          Returns NTable instance if exists, otherwise returns null.
 

Uses of TableSchema in com.nhncorp.neptune.tablet
 

Methods in com.nhncorp.neptune.tablet that return TableSchema
static TableSchema TableSchema.loadTableSchema(NConfiguration conf, java.lang.String tableName)
           
 

Methods in com.nhncorp.neptune.tablet with parameters of type TableSchema
 int TableSchema.compareTo(TableSchema o)