Class ColumnOrderingStrategyLegacy
java.lang.Object
org.hibernate.boot.model.relational.ColumnOrderingStrategyLegacy
- All Implemented Interfaces:
ColumnOrderingStrategy
A no-op implementation.
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionorderConstraintColumns
(Constraint constraint, Metadata metadata) Orders the columns of the constraint.orderTableColumns
(Table table, Metadata metadata) Orders the columns of the table.void
orderTemporaryTableColumns
(List<TemporaryTableColumn> temporaryTableColumns, Metadata metadata) Orders the columns of the temporary table.orderUserDefinedTypeColumns
(UserDefinedObjectType userDefinedType, Metadata metadata) Orders the columns of the user defined type.
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
ColumnOrderingStrategyLegacy
public ColumnOrderingStrategyLegacy()
-
-
Method Details
-
orderTableColumns
Description copied from interface:ColumnOrderingStrategy
Orders the columns of the table. May return null if columns were not ordered.- Specified by:
orderTableColumns
in interfaceColumnOrderingStrategy
-
orderConstraintColumns
Description copied from interface:ColumnOrderingStrategy
Orders the columns of the constraint. May return null if columns were not ordered.- Specified by:
orderConstraintColumns
in interfaceColumnOrderingStrategy
-
orderUserDefinedTypeColumns
public List<Column> orderUserDefinedTypeColumns(UserDefinedObjectType userDefinedType, Metadata metadata) Description copied from interface:ColumnOrderingStrategy
Orders the columns of the user defined type. May return null if columns were not ordered.- Specified by:
orderUserDefinedTypeColumns
in interfaceColumnOrderingStrategy
-
orderTemporaryTableColumns
public void orderTemporaryTableColumns(List<TemporaryTableColumn> temporaryTableColumns, Metadata metadata) Description copied from interface:ColumnOrderingStrategy
Orders the columns of the temporary table.- Specified by:
orderTemporaryTableColumns
in interfaceColumnOrderingStrategy
-