Uses of Interface
org.hibernate.boot.model.relational.ColumnOrderingStrategy
-
Packages that use ColumnOrderingStrategy Package Description org.hibernate.boot This package contains the interfaces that make up the bootstrap API for Hibernate.org.hibernate.boot.internal org.hibernate.boot.model.relational Some SPIs related to DDL generation and schema management.org.hibernate.boot.spi A range of SPIs allowing integration with—and customization of—the process of building metadata.org.hibernate.cfg This package defines APIs for configuring Hibernate. -
-
Uses of ColumnOrderingStrategy in org.hibernate.boot
Methods in org.hibernate.boot with parameters of type ColumnOrderingStrategy Modifier and Type Method Description MetadataBuilder
MetadataBuilder. applyColumnOrderingStrategy(ColumnOrderingStrategy columnOrderingStrategy)
Specify theColumnOrderingStrategy
. -
Uses of ColumnOrderingStrategy in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return ColumnOrderingStrategy Modifier and Type Method Description ColumnOrderingStrategy
MetadataBuilderImpl.MetadataBuildingOptionsImpl. getColumnOrderingStrategy()
Methods in org.hibernate.boot.internal with parameters of type ColumnOrderingStrategy Modifier and Type Method Description MetadataBuilder
MetadataBuilderImpl. applyColumnOrderingStrategy(ColumnOrderingStrategy columnOrderingStrategy)
-
Uses of ColumnOrderingStrategy in org.hibernate.boot.model.relational
Classes in org.hibernate.boot.model.relational that implement ColumnOrderingStrategy Modifier and Type Class Description class
ColumnOrderingStrategyLegacy
A no-op implementation.class
ColumnOrderingStrategyStandard
Standard implementation that orders columns by size and name following roughly this ordering:order by max(physicalSizeBytes, 4), physicalSizeBytes > 2048, name
-
Uses of ColumnOrderingStrategy in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return ColumnOrderingStrategy Modifier and Type Method Description ColumnOrderingStrategy
AbstractDelegatingMetadataBuildingOptions. getColumnOrderingStrategy()
ColumnOrderingStrategy
MetadataBuildingOptions. getColumnOrderingStrategy()
Methods in org.hibernate.boot.spi with parameters of type ColumnOrderingStrategy Modifier and Type Method Description MetadataBuilder
AbstractDelegatingMetadataBuilderImplementor. applyColumnOrderingStrategy(ColumnOrderingStrategy columnOrderingStrategy)
-
Uses of ColumnOrderingStrategy in org.hibernate.cfg
Methods in org.hibernate.cfg that return ColumnOrderingStrategy Modifier and Type Method Description ColumnOrderingStrategy
Configuration. getColumnOrderingStrategy()
TheCustomEntityDirtinessStrategy
, if any, that was added to this configuration.Methods in org.hibernate.cfg with parameters of type ColumnOrderingStrategy Modifier and Type Method Description Configuration
Configuration. setColumnOrderingStrategy(ColumnOrderingStrategy columnOrderingStrategy)
Specify aCustomEntityDirtinessStrategy
to be added to this configuration.
-