Uses of Class
org.apache.hadoop.hbase.HTableDescriptor

Packages that use HTableDescriptor
org.apache.hadoop.hbase   
org.apache.hadoop.hbase.client Provides HBase Client 
org.apache.hadoop.hbase.client.tableindexed This package provides support for secondary indexing by maintaining a separate, "index", table for each index. 
org.apache.hadoop.hbase.ipc Tools to help define network clients and servers. 
org.apache.hadoop.hbase.master   
org.apache.hadoop.hbase.regionserver   
org.apache.hadoop.hbase.rest Provides an HBase REST service. 
org.apache.hadoop.hbase.rest.parser   
org.apache.hadoop.hbase.rest.serializer   
org.apache.hadoop.hbase.stargate.client   
org.apache.hadoop.hbase.stargate.model   
 

Uses of HTableDescriptor in org.apache.hadoop.hbase
 

Fields in org.apache.hadoop.hbase declared as HTableDescriptor
static HTableDescriptor HTableDescriptor.META_TABLEDESC
          Table descriptor for .META. catalog table
static HTableDescriptor HTableDescriptor.ROOT_TABLEDESC
          Table descriptor for -ROOT- catalog table
protected  HTableDescriptor HRegionInfo.tableDesc
           
 

Methods in org.apache.hadoop.hbase that return HTableDescriptor
 HTableDescriptor HRegionInfo.getTableDesc()
           
 

Methods in org.apache.hadoop.hbase with parameters of type HTableDescriptor
 int HTableDescriptor.compareTo(HTableDescriptor other)
           
 void HRegionInfo.setTableDesc(HTableDescriptor newDesc)
           
 

Constructors in org.apache.hadoop.hbase with parameters of type HTableDescriptor
HRegionInfo(HTableDescriptor tableDesc, byte[] startKey, byte[] endKey)
          Construct HRegionInfo with explicit parameters
HRegionInfo(HTableDescriptor tableDesc, byte[] startKey, byte[] endKey, boolean split)
          Construct HRegionInfo with explicit parameters
HRegionInfo(HTableDescriptor tableDesc, byte[] startKey, byte[] endKey, boolean split, long regionid)
          Construct HRegionInfo with explicit parameters
HTableDescriptor(HTableDescriptor desc)
          Constructor.
 

Uses of HTableDescriptor in org.apache.hadoop.hbase.client
 

Subclasses of HTableDescriptor in org.apache.hadoop.hbase.client
 class UnmodifyableHTableDescriptor
          Read-only table descriptor.
 

Methods in org.apache.hadoop.hbase.client that return HTableDescriptor
 HTableDescriptor HConnection.getHTableDescriptor(byte[] tableName)
           
 HTableDescriptor HTable.getTableDescriptor()
          Gets the table descriptor for this table.
 HTableDescriptor HBaseAdmin.getTableDescriptor(byte[] tableName)
          Method for getting the tableDescriptor
 HTableDescriptor[] HConnection.listTables()
          List all the userspace tables.
 HTableDescriptor[] HBaseAdmin.listTables()
          List all the userspace tables.
 

Methods in org.apache.hadoop.hbase.client with parameters of type HTableDescriptor
 void HBaseAdmin.createTable(HTableDescriptor desc)
          Creates a new table.
 void HBaseAdmin.createTableAsync(HTableDescriptor desc)
          Creates a new table but does not block and wait for it to come online.
 void HBaseAdmin.modifyTable(byte[] tableName, HTableDescriptor htd)
          Modify an existing table, more IRB friendly version.
 

Uses of HTableDescriptor in org.apache.hadoop.hbase.client.tableindexed
 

Methods in org.apache.hadoop.hbase.client.tableindexed that return HTableDescriptor
 HTableDescriptor IndexedTableDescriptor.getBaseTableDescriptor()
           
 

Constructors in org.apache.hadoop.hbase.client.tableindexed with parameters of type HTableDescriptor
IndexedTableDescriptor(HTableDescriptor baseTableDescriptor)
           
 

Uses of HTableDescriptor in org.apache.hadoop.hbase.ipc
 

Methods in org.apache.hadoop.hbase.ipc with parameters of type HTableDescriptor
 void HMasterInterface.createTable(HTableDescriptor desc)
          Creates a new table
 

Uses of HTableDescriptor in org.apache.hadoop.hbase.master
 

Methods in org.apache.hadoop.hbase.master with parameters of type HTableDescriptor
 void HMaster.createTable(HTableDescriptor desc)
           
 

Uses of HTableDescriptor in org.apache.hadoop.hbase.regionserver
 

Methods in org.apache.hadoop.hbase.regionserver that return HTableDescriptor
 HTableDescriptor HRegion.getTableDesc()
           
 

Uses of HTableDescriptor in org.apache.hadoop.hbase.rest
 

Fields in org.apache.hadoop.hbase.rest declared as HTableDescriptor
protected  HTableDescriptor[] DatabaseModel.DatabaseMetadata.tables
           
 

Methods in org.apache.hadoop.hbase.rest that return HTableDescriptor
 HTableDescriptor TableModel.getTableMetadata(String tableName)
          Get table metadata.
 HTableDescriptor[] DatabaseModel.DatabaseMetadata.getTables()
           
 

Methods in org.apache.hadoop.hbase.rest with parameters of type HTableDescriptor
 boolean TableModel.post(byte[] tableName, HTableDescriptor htd)
          Creates table tableName described by the json in input.
 

Uses of HTableDescriptor in org.apache.hadoop.hbase.rest.parser
 

Methods in org.apache.hadoop.hbase.rest.parser that return HTableDescriptor
 HTableDescriptor XMLRestParser.getTableDescriptor(byte[] input)
           
 HTableDescriptor IHBaseRestParser.getTableDescriptor(byte[] input)
          Parses a HTableDescriptor given the input array.
 

Uses of HTableDescriptor in org.apache.hadoop.hbase.rest.serializer
 

Methods in org.apache.hadoop.hbase.rest.serializer with parameters of type HTableDescriptor
 void SimpleXMLSerializer.serializeTableDescriptor(HTableDescriptor tableDescriptor)
           
 void IRestSerializer.serializeTableDescriptor(HTableDescriptor tableDescriptor)
          serialize the HTableDescriptor object Implementation of this method is optional, IF all the work is done in the writeOutput(Object o) method
 

Uses of HTableDescriptor in org.apache.hadoop.hbase.stargate.client
 

Methods in org.apache.hadoop.hbase.stargate.client that return HTableDescriptor
 HTableDescriptor RemoteHTable.getTableDescriptor()
           
 

Methods in org.apache.hadoop.hbase.stargate.client with parameters of type HTableDescriptor
 void RemoteAdmin.createTable(HTableDescriptor desc)
          Creates a new table.
 

Uses of HTableDescriptor in org.apache.hadoop.hbase.stargate.model
 

Methods in org.apache.hadoop.hbase.stargate.model that return HTableDescriptor
 HTableDescriptor TableSchemaModel.getTableDescriptor()
           
 

Constructors in org.apache.hadoop.hbase.stargate.model with parameters of type HTableDescriptor
TableSchemaModel(HTableDescriptor htd)
          Constructor
 



Copyright © 2010 The Apache Software Foundation