Uses of Interface
org.hibernate.tool.schema.extract.spi.ForeignKeyInformation
-
Packages that use ForeignKeyInformation Package Description org.hibernate.tool.schema.extract.internal Implementation of the SPI for schema information extraction from the database via JDBC.org.hibernate.tool.schema.extract.spi Defines an SPI for schema information extraction from the database via JDBC. -
-
Uses of ForeignKeyInformation in org.hibernate.tool.schema.extract.internal
Classes in org.hibernate.tool.schema.extract.internal that implement ForeignKeyInformation Modifier and Type Class Description class
ForeignKeyInformationImpl
Methods in org.hibernate.tool.schema.extract.internal that return ForeignKeyInformation Modifier and Type Method Description ForeignKeyInformation
AbstractInformationExtractorImpl.ForeignKeyBuilder. build()
ForeignKeyInformation
TableInformationImpl. getForeignKey(Identifier fkIdentifier)
Methods in org.hibernate.tool.schema.extract.internal that return types with arguments of type ForeignKeyInformation Modifier and Type Method Description protected Map<Identifier,ForeignKeyInformation>
TableInformationImpl. foreignKeys()
Iterable<ForeignKeyInformation>
AbstractInformationExtractorImpl. getForeignKeys(TableInformation tableInformation)
Iterable<ForeignKeyInformation>
TableInformationImpl. getForeignKeys()
-
Uses of ForeignKeyInformation in org.hibernate.tool.schema.extract.spi
Methods in org.hibernate.tool.schema.extract.spi that return ForeignKeyInformation Modifier and Type Method Description ForeignKeyInformation
TableInformation. getForeignKey(Identifier keyName)
Retrieve the named ForeignKeyInformationMethods in org.hibernate.tool.schema.extract.spi that return types with arguments of type ForeignKeyInformation Modifier and Type Method Description Iterable<ForeignKeyInformation>
InformationExtractor. getForeignKeys(TableInformation tableInformation)
Extract information about foreign keys defined on the given table (targeting or point-at other tables).Iterable<ForeignKeyInformation>
TableInformation. getForeignKeys()
Obtain an iterable over all the table's defined foreign keys.
-