Package org.hibernate.metamodel.mapping
Interface TableDetails
-
- All Known Subinterfaces:
TableMapping
- All Known Implementing Classes:
CollectionTableMapping,EntityTableMapping
public interface TableDetailsDetails about a table
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceTableDetails.KeyColumnDetails about a column within the key groupstatic interfaceTableDetails.KeyColumnConsumerstatic interfaceTableDetails.KeyDetailsDetails about the primary key of a table
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TableDetails.KeyDetailsgetKeyDetails()Details about the primary-key of this tableStringgetTableName()The name of the tablebooleanisIdentifierTable()Whether this table is the root for a givenModelPartContainer.
-
-
-
Method Detail
-
getTableName
String getTableName()
The name of the table
-
getKeyDetails
TableDetails.KeyDetails getKeyDetails()
Details about the primary-key of this table
-
isIdentifierTable
boolean isIdentifierTable()
Whether this table is the root for a givenModelPartContainer. Only relevant for entity-mappings where this indicates whether this table holds the entity's identifier.
-
-