Uses of Class
org.mybatis.dynamic.sql.dsl.SelectDSL
Packages that use SelectDSL
-
Uses of SelectDSL in org.mybatis.dynamic.sql.dsl
Methods in org.mybatis.dynamic.sql.dsl that return SelectDSLModifier and TypeMethodDescriptionSelectDSL.configureStatement(Consumer<StatementConfiguration> consumer) SelectDSL.JoinSpecificationFinisher.endJoin()SelectDSL.from(Buildable<SelectModel> select) SelectDSL.from(Buildable<SelectModel> select, String tableAlias) SelectDSL.groupBy(Collection<? extends BasicColumn> columns) SelectDSL.JoinSpecificationFinisher.groupBy(Collection<? extends BasicColumn> columns) SelectDSL.QueryExpressionWhereBuilder.groupBy(Collection<? extends BasicColumn> columns) SelectDSL.JoinSpecificationFinisher.orderBy(Collection<? extends SortSpecification> columns) SelectDSL.orderBy(Collection<? extends SortSpecification> columns) SelectDSL.QueryExpressionHavingBuilder.orderBy(Collection<? extends SortSpecification> columns) SelectDSL.QueryExpressionWhereBuilder.orderBy(Collection<? extends SortSpecification> columns) static SelectDSLSelectDSL.select(Collection<? extends BasicColumn> selectList) static SelectDSLSelectDSL.select(BasicColumn... selectList) SelectDSL.UnionBuilder.select(List<BasicColumn> selectList) SelectDSL.UnionBuilder.select(BasicColumn... selectList) static SelectDSLSelectDSL.selectDistinct(Collection<? extends BasicColumn> selectList) static SelectDSLSelectDSL.selectDistinct(BasicColumn... selectList) SelectDSL.UnionBuilder.selectDistinct(List<BasicColumn> selectList) SelectDSL.UnionBuilder.selectDistinct(BasicColumn... selectList) SelectDSL.JoinSpecificationFinisher.setForClause(String forClause) SelectDSL.QueryExpressionHavingBuilder.setForClause(String forClause) SelectDSL.QueryExpressionWhereBuilder.setForClause(String forClause) SelectDSL.setForClause(String forClause) SelectDSL.JoinSpecificationFinisher.setWaitClause(String waitClause) SelectDSL.QueryExpressionHavingBuilder.setWaitClause(String waitClause) SelectDSL.QueryExpressionWhereBuilder.setWaitClause(String waitClause) SelectDSL.setWaitClause(String waitClause) Methods in org.mybatis.dynamic.sql.dsl that return types with arguments of type SelectDSLModifier and TypeMethodDescriptionSelectDSL.fetchFirstWhenPresent(@Nullable Long fetchFirstRows) SelectDSL.JoinSpecificationFinisher.fetchFirstWhenPresent(@Nullable Long fetchFirstRows) SelectDSL.QueryExpressionHavingBuilder.fetchFirstWhenPresent(@Nullable Long fetchFirstRows) SelectDSL.QueryExpressionWhereBuilder.fetchFirstWhenPresent(@Nullable Long fetchFirstRows) SelectDSL.JoinSpecificationFinisher.limitWhenPresent(@Nullable Long limit) SelectDSL.limitWhenPresent(@Nullable Long limit) SelectDSL.QueryExpressionHavingBuilder.limitWhenPresent(@Nullable Long limit) SelectDSL.QueryExpressionWhereBuilder.limitWhenPresent(@Nullable Long limit) SelectDSL.JoinSpecificationFinisher.offsetWhenPresent(@Nullable Long offset) SelectDSL.offsetWhenPresent(@Nullable Long offset) SelectDSL.QueryExpressionHavingBuilder.offsetWhenPresent(@Nullable Long offset) SelectDSL.QueryExpressionWhereBuilder.offsetWhenPresent(@Nullable Long offset) -
Uses of SelectDSL in org.mybatis.dynamic.sql.util.mybatis3
Methods in org.mybatis.dynamic.sql.util.mybatis3 with parameters of type SelectDSLModifier and TypeMethodDescriptionstatic SelectStatementProviderMyBatis3Utils.select(SelectDSL start, SelectDSLCompleter completer) static <R> List<R>MyBatis3Utils.selectList(Function<SelectStatementProvider, List<R>> mapper, SelectDSL start, SelectDSLCompleter completer) static <R> RMyBatis3Utils.selectOne(Function<SelectStatementProvider, R> mapper, SelectDSL start, SelectDSLCompleter completer)