Uses of Class
org.hibernate.mapping.ForeignKey
-
Packages that use ForeignKey Package Description org.hibernate.boot.internal 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.org.hibernate.tool.schema.spi An SPI for tooling related to DDL generation, export, migration, and validation. -
-
Uses of ForeignKey in org.hibernate.boot.internal
Method parameters in org.hibernate.boot.internal with type arguments of type ForeignKey Modifier and Type Method Description protected void
InFlightMetadataCollectorImpl. secondPassCompileForeignKeys(Table table, Set<ForeignKey> done, MetadataBuildingContext buildingContext)
Constructors in org.hibernate.boot.internal with parameters of type ForeignKey Constructor Description ForeignKeyNameSource(ForeignKey foreignKey, Table table, MetadataBuildingContext buildingContext)
-
Uses of ForeignKey in org.hibernate.dialect
Methods in org.hibernate.dialect that return types with arguments of type ForeignKey Modifier and Type Method Description Exporter<ForeignKey>
Dialect. getForeignKeyExporter()
Exporter<ForeignKey>
DialectDelegateWrapper. getForeignKeyExporter()
Exporter<ForeignKey>
SpannerDialect. getForeignKeyExporter()
-
Uses of ForeignKey in org.hibernate.mapping
Methods in org.hibernate.mapping that return ForeignKey Modifier and Type Method Description ForeignKey
Table. createForeignKey(String keyName, List<Column> keyColumns, String referencedEntityName, String keyDefinition)
ForeignKey
Table. createForeignKey(String keyName, List<Column> keyColumns, String referencedEntityName, String keyDefinition, List<Column> referencedColumns)
ForeignKey
KeyValue. createForeignKeyOfEntity(String entityName)
ForeignKey
SimpleValue. createForeignKeyOfEntity(String entityName)
Methods in org.hibernate.mapping that return types with arguments of type ForeignKey Modifier and Type Method Description Iterator<ForeignKey>
Table. getForeignKeyIterator()
Deprecated, for removal: This API element is subject to removal in a future version.No longer used, should be removedMap<Table.ForeignKeyKey,ForeignKey>
Table. getForeignKeys()
-
Uses of ForeignKey in org.hibernate.tool.schema.internal
Methods in org.hibernate.tool.schema.internal with parameters of type ForeignKey Modifier and Type Method Description String[]
StandardForeignKeyExporter. getSqlCreateStrings(ForeignKey foreignKey, Metadata metadata, SqlStringGenerationContext context)
String
StandardTableCleaner. getSqlDisableConstraintString(ForeignKey foreignKey, Metadata metadata, SqlStringGenerationContext context)
String[]
StandardForeignKeyExporter. getSqlDropStrings(ForeignKey foreignKey, Metadata metadata, SqlStringGenerationContext context)
String
StandardTableCleaner. getSqlEnableConstraintString(ForeignKey foreignKey, Metadata metadata, SqlStringGenerationContext context)
-
Uses of ForeignKey in org.hibernate.tool.schema.spi
Methods in org.hibernate.tool.schema.spi with parameters of type ForeignKey Modifier and Type Method Description String
Cleaner. getSqlDisableConstraintString(ForeignKey foreignKey, Metadata metadata, SqlStringGenerationContext context)
A statement that disables the given foreign key constraint.String
Cleaner. getSqlEnableConstraintString(ForeignKey foreignKey, Metadata metadata, SqlStringGenerationContext context)
A statement that re-enables the given foreign key constraint.
-