Uses of Interface
org.hibernate.tool.schema.extract.spi.ColumnInformation
-
Packages that use ColumnInformation 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.org.hibernate.tool.schema.internal An implementation of the SPI for the tooling related to DDL generation, export, migration, and validation. -
-
Uses of ColumnInformation in org.hibernate.tool.schema.extract.internal
Classes in org.hibernate.tool.schema.extract.internal that implement ColumnInformation Modifier and Type Class Description class
ColumnInformationImpl
JDBC column metadataMethods in org.hibernate.tool.schema.extract.internal that return ColumnInformation Modifier and Type Method Description ColumnInformation
TableInformationImpl. getColumn(Identifier columnIdentifier)
ColumnInformation
ForeignKeyInformationImpl.ColumnReferenceMappingImpl. getReferencedColumnMetadata()
ColumnInformation
ForeignKeyInformationImpl.ColumnReferenceMappingImpl. getReferencingColumnMetadata()
Methods in org.hibernate.tool.schema.extract.internal that return types with arguments of type ColumnInformation Modifier and Type Method Description Iterable<ColumnInformation>
PrimaryKeyInformationImpl. getColumns()
List<ColumnInformation>
IndexInformationImpl. getIndexedColumns()
Methods in org.hibernate.tool.schema.extract.internal with parameters of type ColumnInformation Modifier and Type Method Description IndexInformationImpl.Builder
IndexInformationImpl.Builder. addColumn(ColumnInformation columnInformation)
void
TableInformationImpl. addColumn(ColumnInformation columnIdentifier)
AbstractInformationExtractorImpl.ForeignKeyBuilder
AbstractInformationExtractorImpl.ForeignKeyBuilder. addColumnMapping(ColumnInformation referencing, ColumnInformation referenced)
AbstractInformationExtractorImpl.ForeignKeyBuilder
AbstractInformationExtractorImpl.ForeignKeyBuilderImpl. addColumnMapping(ColumnInformation referencing, ColumnInformation referenced)
Constructors in org.hibernate.tool.schema.extract.internal with parameters of type ColumnInformation Constructor Description ColumnReferenceMappingImpl(ColumnInformation referencing, ColumnInformation referenced)
Constructor parameters in org.hibernate.tool.schema.extract.internal with type arguments of type ColumnInformation Constructor Description IndexInformationImpl(Identifier indexIdentifier, List<ColumnInformation> columnList)
PrimaryKeyInformationImpl(Identifier identifier, Iterable<ColumnInformation> columns)
-
Uses of ColumnInformation in org.hibernate.tool.schema.extract.spi
Methods in org.hibernate.tool.schema.extract.spi that return ColumnInformation Modifier and Type Method Description ColumnInformation
TableInformation. getColumn(Identifier columnIdentifier)
Retrieve the named ColumnInformationColumnInformation
ForeignKeyInformation.ColumnReferenceMapping. getReferencedColumnMetadata()
Obtain the information about the referenced column (the target side).ColumnInformation
ForeignKeyInformation.ColumnReferenceMapping. getReferencingColumnMetadata()
Obtain the information about the referencing column (the source column, which points to the referenced column).Methods in org.hibernate.tool.schema.extract.spi that return types with arguments of type ColumnInformation Modifier and Type Method Description Iterable<ColumnInformation>
PrimaryKeyInformation. getColumns()
Obtain the columns making up the primary key.List<ColumnInformation>
IndexInformation. getIndexedColumns()
Obtain the columns indexed under this index.Methods in org.hibernate.tool.schema.extract.spi with parameters of type ColumnInformation Modifier and Type Method Description void
TableInformation. addColumn(ColumnInformation columnIdentifier)
-
Uses of ColumnInformation in org.hibernate.tool.schema.internal
Methods in org.hibernate.tool.schema.internal with parameters of type ColumnInformation Modifier and Type Method Description protected void
AbstractSchemaValidator. validateColumnType(Table table, Column column, ColumnInformation columnInformation, Metadata metadata, ExecutionOptions options, Dialect dialect)
-