Class ColumnOrderingStrategyLegacy
- java.lang.Object
-
- org.hibernate.boot.model.relational.ColumnOrderingStrategyLegacy
-
- All Implemented Interfaces:
ColumnOrderingStrategy
public class ColumnOrderingStrategyLegacy extends Object implements ColumnOrderingStrategy
A no-op implementation.
-
-
Field Summary
Fields Modifier and Type Field Description static ColumnOrderingStrategyLegacy
INSTANCE
-
Constructor Summary
Constructors Constructor Description ColumnOrderingStrategyLegacy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Column>
orderConstraintColumns(Constraint constraint, Metadata metadata)
Orders the columns of the constraint.List<Column>
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.List<Column>
orderUserDefinedTypeColumns(UserDefinedType userDefinedType, Metadata metadata)
Orders the columns of the user defined type.
-
-
-
Field Detail
-
INSTANCE
public static final ColumnOrderingStrategyLegacy INSTANCE
-
-
Method Detail
-
orderTableColumns
public List<Column> orderTableColumns(Table table, Metadata metadata)
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
public List<Column> orderConstraintColumns(Constraint constraint, Metadata metadata)
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(UserDefinedType 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
-
-