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
 

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

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

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

Constructors in org.hibernate.cfg with parameters of type Table
Mappings.TableDescription(java.lang.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()
           
 Table Subclass.getRootTable()
           
abstract  Table PersistentClass.getRootTable()
           
 Table RootClass.getRootTable()
           
 Table OneToMany.getTable()
          Table of the owner entity (the "one" side)
 Table Constraint.getTable()
           
 Table Collection.getTable()
           
 Table Index.getTable()
           
 Table Value.getTable()
           
 Table JoinedSubclass.getTable()
           
 Table Subclass.getTable()
           
abstract  Table PersistentClass.getTable()
           
 Table RootClass.getTable()
           
 Table SimpleValue.getTable()
           
 Table UnionSubclass.getTable()
           
 Table Join.getTable()
           
 

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



Copyright © 2008 Hibernate.org. All Rights Reserved.