Uses of Interface
org.mybatis.dynamic.sql.SortSpecification
-
Packages that use SortSpecification Package Description org.mybatis.dynamic.sql org.mybatis.dynamic.sql.select -
-
Uses of SortSpecification in org.mybatis.dynamic.sql
Classes in org.mybatis.dynamic.sql that implement SortSpecification Modifier and Type Class Description classSqlColumn<T>Methods in org.mybatis.dynamic.sql that return SortSpecification Modifier and Type Method Description SortSpecificationSortSpecification. descending()Returns a new instance of the SortSpecification that should render as descending in an ORDER BY clause.SortSpecificationSqlColumn. descending()static SortSpecificationSqlBuilder. sortColumn(String name)Creates a sort specification based on a String.static SortSpecificationSqlBuilder. 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.select
Classes in org.mybatis.dynamic.sql.select that implement SortSpecification Modifier and Type Class Description classColumnSortSpecificationclassSimpleSortSpecificationThis 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 SortSpecification Modifier and Type Method Description SortSpecificationColumnSortSpecification. descending()SortSpecificationSimpleSortSpecification. descending()Methods in org.mybatis.dynamic.sql.select with parameters of type SortSpecification Modifier and Type Method Description static SelectDSLCompleterSelectDSLCompleter. allRowsOrderedBy(SortSpecification... columns)Returns a completer that can be used to select every row in a table with specified order.SelectDSL<R>QueryExpressionDSL.GroupByFinisher. orderBy(SortSpecification... columns)SelectDSL<R>QueryExpressionDSL.JoinSpecificationFinisher. orderBy(SortSpecification... columns)SelectDSL<R>QueryExpressionDSL. orderBy(SortSpecification... columns)SelectDSL<R>QueryExpressionDSL.QueryExpressionWhereBuilder. orderBy(SortSpecification... columns)Method parameters in org.mybatis.dynamic.sql.select with type arguments of type SortSpecification Modifier and Type Method Description <R> Stream<R>OrderByModel. mapColumns(Function<SortSpecification,R> mapper)static OrderByModelOrderByModel. of(Collection<SortSpecification> columns)SelectDSL<R>QueryExpressionDSL.GroupByFinisher. orderBy(Collection<SortSpecification> columns)SelectDSL<R>QueryExpressionDSL.JoinSpecificationFinisher. orderBy(Collection<SortSpecification> columns)SelectDSL<R>QueryExpressionDSL. orderBy(Collection<SortSpecification> columns)SelectDSL<R>QueryExpressionDSL.QueryExpressionWhereBuilder. orderBy(Collection<SortSpecification> columns)
-