Uses of Class
org.hibernate.mapping.UniqueKey
Packages that use UniqueKey
Package
Description
This package abstracts over the multifarious dialects of SQL
understood by the databases supported by Hibernate.
Support for
Dialect
-specific unique constraint definition.This package defines the Hibernate configuration-time mapping model.
An implementation of the SPI for the tooling related to DDL generation, export, migration, and validation.
-
Uses of UniqueKey in org.hibernate.dialect
Methods in org.hibernate.dialect that return types with arguments of type UniqueKeyModifier and TypeMethodDescriptionDialect.getUniqueKeyExporter()
DialectDelegateWrapper.getUniqueKeyExporter()
SpannerDialect.getUniqueKeyExporter()
-
Uses of UniqueKey in org.hibernate.dialect.unique
Methods in org.hibernate.dialect.unique with parameters of type UniqueKeyModifier and TypeMethodDescriptionprotected void
CreateTableUniqueDelegate.appendUniqueConstraint
(StringBuilder fragment, UniqueKey uniqueKey) protected void
SkipNullableUniqueDelegate.appendUniqueConstraint
(StringBuilder fragment, UniqueKey uniqueKey) AlterTableUniqueDelegate.getAlterTableToAddUniqueKeyCommand
(UniqueKey uniqueKey, Metadata metadata, SqlStringGenerationContext context) AlterTableUniqueIndexDelegate.getAlterTableToAddUniqueKeyCommand
(UniqueKey uniqueKey, Metadata metadata, SqlStringGenerationContext context) CreateTableUniqueDelegate.getAlterTableToAddUniqueKeyCommand
(UniqueKey uniqueKey, Metadata metadata, SqlStringGenerationContext context) SkipNullableUniqueDelegate.getAlterTableToAddUniqueKeyCommand
(UniqueKey uniqueKey, Metadata metadata, SqlStringGenerationContext context) UniqueDelegate.getAlterTableToAddUniqueKeyCommand
(UniqueKey uniqueKey, Metadata metadata, SqlStringGenerationContext context) Get thealter table
command used to create the given unique key constraint, or return the empty string if the constraint was already included in thecreate table
statement byUniqueDelegate.getTableCreationUniqueConstraintsFragment(org.hibernate.mapping.Table, org.hibernate.boot.model.relational.SqlStringGenerationContext)
.AlterTableUniqueDelegate.getAlterTableToDropUniqueKeyCommand
(UniqueKey uniqueKey, Metadata metadata, SqlStringGenerationContext context) AlterTableUniqueIndexDelegate.getAlterTableToDropUniqueKeyCommand
(UniqueKey uniqueKey, Metadata metadata, SqlStringGenerationContext context) CreateTableUniqueDelegate.getAlterTableToDropUniqueKeyCommand
(UniqueKey uniqueKey, Metadata metadata, SqlStringGenerationContext context) SkipNullableUniqueDelegate.getAlterTableToDropUniqueKeyCommand
(UniqueKey uniqueKey, Metadata metadata, SqlStringGenerationContext context) UniqueDelegate.getAlterTableToDropUniqueKeyCommand
(UniqueKey uniqueKey, Metadata metadata, SqlStringGenerationContext context) Get thealter table
command used to drop the given unique key which was previously created byUniqueDelegate.getAlterTableToAddUniqueKeyCommand(org.hibernate.mapping.UniqueKey, org.hibernate.boot.Metadata, org.hibernate.boot.model.relational.SqlStringGenerationContext)
.protected String
AlterTableUniqueDelegate.uniqueConstraintSql
(UniqueKey uniqueKey) -
Uses of UniqueKey in org.hibernate.mapping
Methods in org.hibernate.mapping that return UniqueKeyModifier and TypeMethodDescriptionTable.addUniqueKey
(UniqueKey uniqueKey) Table.getOrCreateUniqueKey
(String keyName) PrimaryKey.getOrderingUniqueKey()
Table.getUniqueKey
(String keyName) Methods in org.hibernate.mapping that return types with arguments of type UniqueKeyMethods in org.hibernate.mapping with parameters of type UniqueKeyModifier and TypeMethodDescriptionTable.addUniqueKey
(UniqueKey uniqueKey) void
PrimaryKey.setOrderingUniqueKey
(UniqueKey uniqueKey) -
Uses of UniqueKey in org.hibernate.tool.schema.internal
Methods in org.hibernate.tool.schema.internal with parameters of type UniqueKeyModifier and TypeMethodDescriptionString[]
StandardUniqueKeyExporter.getSqlCreateStrings
(UniqueKey constraint, Metadata metadata, SqlStringGenerationContext context) String[]
StandardUniqueKeyExporter.getSqlDropStrings
(UniqueKey constraint, Metadata metadata, SqlStringGenerationContext context)