Uses of Interface
org.mybatis.dynamic.sql.SortSpecification
Package
Description
-
Uses of SortSpecification in org.mybatis.dynamic.sql
Modifier and TypeMethodDescriptionSortSpecification.descending()
Returns a new instance of the SortSpecification that should render as descending in an ORDER BY clause.SqlColumn.descending()
static SortSpecification
SqlBuilder.sortColumn
(String name) Creates a sort specification based on a String.static SortSpecification
SqlBuilder.sortColumn
(String tableAlias, SqlColumn<?> column) Creates a sort specification based on a column and a table alias. -
Uses of SortSpecification in org.mybatis.dynamic.sql.common
Modifier and TypeMethodDescriptionstatic OrderByModel
OrderByModel.of
(Collection<? extends SortSpecification> columns) -
Uses of SortSpecification in org.mybatis.dynamic.sql.delete
Modifier and TypeMethodDescriptionDeleteDSL.DeleteWhereBuilder.orderBy
(SortSpecification... columns) DeleteDSL.orderBy
(SortSpecification... columns) Modifier and TypeMethodDescriptionDeleteDSL.DeleteWhereBuilder.orderBy
(Collection<? extends SortSpecification> columns) DeleteDSL.orderBy
(Collection<? extends SortSpecification> columns) -
Uses of SortSpecification in org.mybatis.dynamic.sql.select
Modifier and TypeClassDescriptionclass
class
This class is used for an order by phrase where there is no suitable column name to use (for example a calculated column or an aggregate column).Modifier and TypeMethodDescriptionColumnSortSpecification.descending()
SimpleSortSpecification.descending()
Modifier and TypeMethodDescriptionstatic SelectDSLCompleter
SelectDSLCompleter.allRowsOrderedBy
(SortSpecification... columns) Returns a completer that can be used to select every row in a table with specified order.MultiSelectDSL.orderBy
(SortSpecification... columns) QueryExpressionDSL.GroupByFinisher.orderBy
(SortSpecification... columns) QueryExpressionDSL.JoinSpecificationFinisher.orderBy
(SortSpecification... columns) QueryExpressionDSL.orderBy
(SortSpecification... columns) QueryExpressionDSL.QueryExpressionHavingBuilder.orderBy
(SortSpecification... columns) QueryExpressionDSL.QueryExpressionWhereBuilder.orderBy
(SortSpecification... columns) Modifier and TypeMethodDescriptionMultiSelectDSL.orderBy
(Collection<? extends SortSpecification> columns) QueryExpressionDSL.GroupByFinisher.orderBy
(Collection<? extends SortSpecification> columns) QueryExpressionDSL.JoinSpecificationFinisher.orderBy
(Collection<? extends SortSpecification> columns) QueryExpressionDSL.orderBy
(Collection<? extends SortSpecification> columns) QueryExpressionDSL.QueryExpressionHavingBuilder.orderBy
(Collection<? extends SortSpecification> columns) QueryExpressionDSL.QueryExpressionWhereBuilder.orderBy
(Collection<? extends SortSpecification> columns) -
Uses of SortSpecification in org.mybatis.dynamic.sql.update
Modifier and TypeMethodDescriptionUpdateDSL.orderBy
(SortSpecification... columns) UpdateDSL.UpdateWhereBuilder.orderBy
(SortSpecification... columns) Modifier and TypeMethodDescriptionUpdateDSL.orderBy
(Collection<? extends SortSpecification> columns) UpdateDSL.UpdateWhereBuilder.orderBy
(Collection<? extends SortSpecification> columns)