Package org.hibernate.metamodel.mapping
Interface TableDetails
-
- All Known Subinterfaces:
TableMapping
- All Known Implementing Classes:
CollectionTableMapping
,EntityTableMapping
public interface TableDetails
Details about a table
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
TableDetails.KeyColumn
Details about a column within the key groupstatic interface
TableDetails.KeyColumnConsumer
static interface
TableDetails.KeyDetails
Details about the primary key of a table
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TableDetails.KeyDetails
getKeyDetails()
Details about the primary-key of this tableString
getTableName()
The name of the tableboolean
isIdentifierTable()
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.
-
-