Uses of Interface
org.mybatis.dynamic.sql.SortSpecification
Packages that use SortSpecification
Package
Description
-
Uses of SortSpecification in org.mybatis.dynamic.sql
Classes in org.mybatis.dynamic.sql that implement SortSpecificationMethods in org.mybatis.dynamic.sql that return SortSpecificationModifier 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
Methods in org.mybatis.dynamic.sql.common that return types with arguments of type SortSpecificationMethod parameters in org.mybatis.dynamic.sql.common with type arguments of type SortSpecificationModifier and TypeMethodDescriptionstatic OrderByModel
OrderByModel.of
(Collection<? extends SortSpecification> columns) -
Uses of SortSpecification in org.mybatis.dynamic.sql.delete
Methods in org.mybatis.dynamic.sql.delete with parameters of type SortSpecificationModifier and TypeMethodDescriptionDeleteDSL.DeleteWhereBuilder.orderBy
(SortSpecification... columns) DeleteDSL.orderBy
(SortSpecification... columns) Method parameters in org.mybatis.dynamic.sql.delete with type arguments of type SortSpecificationModifier and TypeMethodDescriptionDeleteDSL.DeleteWhereBuilder.orderBy
(Collection<? extends SortSpecification> columns) DeleteDSL.orderBy
(Collection<? extends SortSpecification> columns) -
Uses of SortSpecification in org.mybatis.dynamic.sql.select
Classes in org.mybatis.dynamic.sql.select that implement SortSpecificationModifier 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).Methods in org.mybatis.dynamic.sql.select that return SortSpecificationModifier and TypeMethodDescriptionColumnSortSpecification.descending()
SimpleSortSpecification.descending()
Methods in org.mybatis.dynamic.sql.select with parameters of type SortSpecificationModifier 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) Method parameters in org.mybatis.dynamic.sql.select with type arguments of type SortSpecificationModifier 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
Methods in org.mybatis.dynamic.sql.update with parameters of type SortSpecificationModifier and TypeMethodDescriptionUpdateDSL.orderBy
(SortSpecification... columns) UpdateDSL.UpdateWhereBuilder.orderBy
(SortSpecification... columns) Method parameters in org.mybatis.dynamic.sql.update with type arguments of type SortSpecificationModifier and TypeMethodDescriptionUpdateDSL.orderBy
(Collection<? extends SortSpecification> columns) UpdateDSL.UpdateWhereBuilder.orderBy
(Collection<? extends SortSpecification> columns)