Uses of Class
org.hibernate.mapping.Table

Packages that use Table
org.hibernate.cfg   
org.hibernate.mapping   
 

Uses of Table in org.hibernate.cfg
 

Fields in org.hibernate.cfg declared as Table
 Table Mappings.TableDescription.denormalizedSupertable
           
 

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

Methods in org.hibernate.cfg with parameters of type Table
 void Mappings.addColumnBinding(String logicalName, Column finalColumn, Table table)
           
 Table Mappings.addDenormalizedTable(String schema, String catalog, String name, boolean isAbstract, String subselect, Table includedTable)
           
 void Mappings.addTableBinding(String schema, String catalog, String logicalName, String physicalName, Table denormalizedSuperTable)
           
 String Mappings.getLogicalColumnName(String physicalName, Table table)
           
 String Mappings.getLogicalTableName(Table table)
           
 String Mappings.getPhysicalColumnName(String logicalName, Table table)
           
protected  void Configuration.secondPassCompileForeignKeys(Table table, Set done)
           
 

Constructors in org.hibernate.cfg with parameters of type Table
Mappings.TableDescription(String logicalName, Table denormalizedSupertable)
           
 

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 Collection.getCollectionTable()
           
 Table PersistentClass.getIdentityTable()
           
 Table UnionSubclass.getIdentityTable()
           
 Table ForeignKey.getReferencedTable()
           
abstract  Table PersistentClass.getRootTable()
           
 Table RootClass.getRootTable()
           
 Table Subclass.getRootTable()
           
 Table Collection.getTable()
           
 Table Constraint.getTable()
           
 Table Index.getTable()
           
 Table Join.getTable()
           
 Table JoinedSubclass.getTable()
           
 Table OneToMany.getTable()
          Table of the owner entity (the "one" side)
abstract  Table PersistentClass.getTable()
           
 Table RootClass.getTable()
           
 Table SimpleValue.getTable()
           
 Table Subclass.getTable()
           
 Table UnionSubclass.getTable()
           
 Table Value.getTable()
           
 

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

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