Uses of Class
org.hibernate.mapping.Table

Packages that use Table
org.hibernate.cfg This package defines APIs for configuring Hibernate, and classes for building the Hibernate configuration-time metamodel. 
org.hibernate.mapping This package defines the Hibernate configuration-time metamodel. 
 

Uses of Table in org.hibernate.cfg
 

Methods in org.hibernate.cfg that return Table
 Table Mappings.addTable(String schema, String catalog, String name, String subselect, boolean isAbstract)
           
 Table Mappings.addDenormalizedTable(String schema, String catalog, String name, boolean isAbstract, String subselect, Table includedTable)
           
 Table Mappings.getTable(String schema, String catalog, String name)
           
 

Methods in org.hibernate.cfg with parameters of type Table
 Table Mappings.addDenormalizedTable(String schema, String catalog, String name, boolean isAbstract, String subselect, Table includedTable)
           
protected  void Configuration.secondPassCompileForeignKeys(Table table, Set done)
           
 

Uses of Table in org.hibernate.mapping
 

Subclasses of Table in org.hibernate.mapping
 class DenormalizedTable
           
 

Methods in org.hibernate.mapping that return Table
 Table Value.getTable()
           
 Table UnionSubclass.getTable()
           
 Table UnionSubclass.getIdentityTable()
           
 Table Subclass.getRootTable()
           
 Table Subclass.getTable()
           
 Table SimpleValue.getTable()
           
 Table RootClass.getTable()
           
 Table RootClass.getRootTable()
           
 Table QueryList.getTable()
           
 Table PersistentClass.getIdentityTable()
           
abstract  Table PersistentClass.getTable()
           
abstract  Table PersistentClass.getRootTable()
           
 Table OneToMany.getTable()
          Table of the owner entity (the "one" side)
 Table JoinedSubclass.getTable()
           
 Table Join.getTable()
           
 Table Index.getTable()
           
 Table ForeignKey.getReferencedTable()
           
 Table Constraint.getTable()
           
 Table Collection.getCollectionTable()
           
 Table Collection.getTable()
           
 

Methods in org.hibernate.mapping with parameters of type Table
 void UnionSubclass.setTable(Table table)
           
 void TableOwner.setTable(Table table)
           
protected  void Subclass.addSubclassTable(Table table)
           
 boolean Subclass.isClassOrSuperclassTable(Table table)
           
 void SimpleValue.setTable(Table table)
           
 String Selectable.getAlias(Table table)
           
 void RootClass.setTable(Table table)
           
protected  void PersistentClass.addSubclassTable(Table subclassTable)
           
 boolean PersistentClass.isClassOrSuperclassTable(Table closureTable)
           
 void JoinedSubclass.setTable(Table table)
           
 void Join.setTable(Table table)
           
static String Index.buildSqlDropIndexString(Dialect dialect, Table table, String name, String defaultCatalog, String defaultSchema)
           
static String Index.buildSqlCreateIndexString(Dialect dialect, String name, Table table, Iterator columns, boolean unique, String defaultCatalog, String defaultSchema)
           
 void Index.setTable(Table table)
           
 String Formula.getAlias(Table table)
           
 void ForeignKey.setReferencedTable(Table referencedTable)
           
 void Constraint.setTable(Table table)
           
 String Column.getAlias(Table table)
          Generate a column alias that is unique across multiple tables
 void Collection.setCollectionTable(Table table)
           
 

Constructors in org.hibernate.mapping with parameters of type Table
ToOne(Table table)
           
SimpleValue(Table table)
           
QueryList(Table table)
           
OneToOne(Table table, PersistentClass owner)
           
ManyToOne(Table table)
           
DependantValue(Table table, KeyValue prototype)
           
DenormalizedTable(Table includedTable)
           
Any(Table table)