Uses of Class
org.hibernate.mapping.Constraint
-
Packages that use Constraint Package Description org.hibernate.boot.model.relational Some SPIs related to DDL generation and schema management.org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.mapping This package defines the Hibernate configuration-time mapping model.org.hibernate.tool.schema.internal An implementation of the SPI for the tooling related to DDL generation, export, migration, and validation. -
-
Uses of Constraint in org.hibernate.boot.model.relational
Methods in org.hibernate.boot.model.relational with parameters of type Constraint Modifier and Type Method Description List<Column>
ColumnOrderingStrategy. orderConstraintColumns(Constraint constraint, Metadata metadata)
Orders the columns of the constraint.List<Column>
ColumnOrderingStrategyLegacy. orderConstraintColumns(Constraint constraint, Metadata metadata)
List<Column>
ColumnOrderingStrategyStandard. orderConstraintColumns(Constraint constraint, Metadata metadata)
-
Uses of Constraint in org.hibernate.dialect
Methods in org.hibernate.dialect that return types with arguments of type Constraint Modifier and Type Method Description Exporter<Constraint>
Dialect. getUniqueKeyExporter()
Exporter<Constraint>
DialectDelegateWrapper. getUniqueKeyExporter()
Exporter<Constraint>
SpannerDialect. getUniqueKeyExporter()
-
Uses of Constraint in org.hibernate.mapping
Subclasses of Constraint in org.hibernate.mapping Modifier and Type Class Description class
ForeignKey
A mapping model object representing a foreign key constraint.class
PrimaryKey
A mapping model object representing a primary key constraint.class
UniqueKey
A mapping model object representing a unique key constraint on a relational database table. -
Uses of Constraint in org.hibernate.tool.schema.internal
Methods in org.hibernate.tool.schema.internal with parameters of type Constraint Modifier and Type Method Description String[]
StandardUniqueKeyExporter. getSqlCreateStrings(Constraint constraint, Metadata metadata, SqlStringGenerationContext context)
String[]
StandardUniqueKeyExporter. getSqlDropStrings(Constraint constraint, Metadata metadata, SqlStringGenerationContext context)
-