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.protobuf Holds classes generated from protobuf src/main/protobuf definition files. 
 

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
 

Methods in org.apache.hadoop.hbase that return HTableDescriptor
static HTableDescriptor HTableDescriptor.convert(HBaseProtos.TableSchema ts)
           
static HTableDescriptor HTableDescriptor.parseFrom(byte[] bytes)
           
 

Methods in org.apache.hadoop.hbase with parameters of type HTableDescriptor
 int HTableDescriptor.compareTo(HTableDescriptor other)
          Compares the descriptor with another descriptor which is passed as a parameter.
 

Constructors in org.apache.hadoop.hbase with parameters of type HTableDescriptor
HTableDescriptor(HTableDescriptor desc)
          Construct a table descriptor by cloning the descriptor passed as a parameter.
 

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[] HBaseAdmin.deleteTables(Pattern pattern)
          Delete tables matching the passed in pattern and wait on completion.
 HTableDescriptor[] HBaseAdmin.deleteTables(String regex)
          Deletes tables matching the passed in pattern and wait on completion.
 HTableDescriptor[] HBaseAdmin.disableTables(Pattern pattern)
          Disable tables matching the passed in pattern and wait on completion.
 HTableDescriptor[] HBaseAdmin.disableTables(String regex)
          Disable tables matching the passed in pattern and wait on completion.
 HTableDescriptor[] HBaseAdmin.enableTables(Pattern pattern)
          Enable tables matching the passed in pattern and wait on completion.
 HTableDescriptor[] HBaseAdmin.enableTables(String regex)
          Enable tables matching the passed in pattern and wait on completion.
 HTableDescriptor HConnection.getHTableDescriptor(byte[] tableName)
           
 HTableDescriptor[] HConnection.getHTableDescriptors(List<String> tableNames)
           
 HTableDescriptor HTableInterface.getTableDescriptor()
          Gets the table descriptor for this table.
 HTableDescriptor HTable.getTableDescriptor()
          Gets the table descriptor for this table.
 HTableDescriptor HBaseAdmin.getTableDescriptor(byte[] tableName)
          Method for getting the tableDescriptor
 HTableDescriptor[] HBaseAdmin.getTableDescriptors(List<String> tableNames)
          Get tableDescriptors
 HTableDescriptor[] HConnection.listTables()
          List all the userspace tables.
 HTableDescriptor[] HBaseAdmin.listTables()
          List all the userspace tables.
 HTableDescriptor[] HBaseAdmin.listTables(Pattern pattern)
          List all the userspace tables matching the given pattern.
 HTableDescriptor[] HBaseAdmin.listTables(String regex)
          List all the userspace tables matching the given regular expression.
 

Methods in org.apache.hadoop.hbase.client with parameters of type HTableDescriptor
 void HBaseAdmin.createTable(HTableDescriptor desc)
          Creates a new table.
 void HBaseAdmin.createTable(HTableDescriptor desc, byte[][] splitKeys)
          Creates a new table with an initial set of empty regions defined by the specified split keys.
 void HBaseAdmin.createTable(HTableDescriptor desc, byte[] startKey, byte[] endKey, int numRegions)
          Creates a new table with the specified number of regions.
 void HBaseAdmin.createTableAsync(HTableDescriptor desc, byte[][] splitKeys)
          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.protobuf
 

Methods in org.apache.hadoop.hbase.protobuf that return HTableDescriptor
static HTableDescriptor[] ProtobufUtil.getHTableDescriptorArray(MasterMonitorProtos.GetTableDescriptorsResponse proto)
          Get HTableDescriptor[] from GetTableDescriptorsResponse protobuf
 

Methods in org.apache.hadoop.hbase.protobuf with parameters of type HTableDescriptor
static MasterAdminProtos.CreateTableRequest RequestConverter.buildCreateTableRequest(HTableDescriptor hTableDesc, byte[][] splitKeys)
          Creates a protocol buffer CreateTableRequest
static MasterAdminProtos.ModifyTableRequest RequestConverter.buildModifyTableRequest(byte[] table, HTableDescriptor hTableDesc)
          Creates a protocol buffer ModifyTableRequest
 



Copyright © 2013 The Apache Software Foundation. All Rights Reserved.