Uses of Class
org.mybatis.dynamic.sql.select.SelectModel
Packages that use SelectModel
Package
Description
-
Uses of SelectModel in org.mybatis.dynamic.sql
Methods in org.mybatis.dynamic.sql that return SelectModelMethods in org.mybatis.dynamic.sql that return types with arguments of type SelectModelModifier and TypeMethodDescriptionstatic CountDSL.FromGatherer<SelectModel>SqlBuilder.countColumn(BasicColumn column) Renders as select count(column) from table...static CountDSL.FromGatherer<SelectModel>SqlBuilder.countDistinctColumn(BasicColumn column) Renders as select count(distinct column) from table...static CountDSL<SelectModel>Renders as select count(*) from table...SqlBuilder.select(Collection<BasicColumn> selectList) SqlBuilder.select(BasicColumn... selectList) SqlBuilder.selectDistinct(Collection<BasicColumn> selectList) SqlBuilder.selectDistinct(BasicColumn... selectList) ExistsPredicate.selectModelBuilder()Method parameters in org.mybatis.dynamic.sql with type arguments of type SelectModelModifier and TypeMethodDescriptionstatic ExistsPredicateExistsPredicate.exists(Buildable<SelectModel> selectModelBuilder) static ExistsPredicateSqlBuilder.exists(Buildable<SelectModel> selectModelBuilder) static <T> IsEqualToWithSubselect<T>SqlBuilder.isEqualTo(Buildable<SelectModel> selectModelBuilder) static <T> IsGreaterThanWithSubselect<T>SqlBuilder.isGreaterThan(Buildable<SelectModel> selectModelBuilder) static <T> IsGreaterThanOrEqualToWithSubselect<T>SqlBuilder.isGreaterThanOrEqualTo(Buildable<SelectModel> selectModelBuilder) static <T> IsInWithSubselect<T>SqlBuilder.isIn(Buildable<SelectModel> selectModelBuilder) static <T> IsLessThanWithSubselect<T>SqlBuilder.isLessThan(Buildable<SelectModel> selectModelBuilder) static <T> IsLessThanOrEqualToWithSubselect<T>SqlBuilder.isLessThanOrEqualTo(Buildable<SelectModel> selectModelBuilder) static <T> IsNotEqualToWithSubselect<T>SqlBuilder.isNotEqualTo(Buildable<SelectModel> selectModelBuilder) static <T> IsNotInWithSubselect<T>SqlBuilder.isNotIn(Buildable<SelectModel> selectModelBuilder) static MultiSelectDSLSqlBuilder.multiSelect(Buildable<SelectModel> selectModelBuilder) static ExistsPredicateExistsPredicate.notExists(Buildable<SelectModel> selectModelBuilder) static ExistsPredicateSqlBuilder.notExists(Buildable<SelectModel> selectModelBuilder) SqlBuilder.InsertIntoNextStep.withSelectStatement(Buildable<SelectModel> selectModelBuilder) Constructor parameters in org.mybatis.dynamic.sql with type arguments of type SelectModelModifierConstructorDescriptionprotectedAbstractSubselectCondition(Buildable<SelectModel> selectModelBuilder) -
Uses of SelectModel in org.mybatis.dynamic.sql.insert
Methods in org.mybatis.dynamic.sql.insert that return SelectModelMethods in org.mybatis.dynamic.sql.insert with parameters of type SelectModelModifier and TypeMethodDescriptionInsertSelectModel.Builder.withSelectModel(SelectModel selectModel) Method parameters in org.mybatis.dynamic.sql.insert with type arguments of type SelectModelModifier and TypeMethodDescriptionInsertSelectDSL.InsertColumnGatherer.withSelectStatement(Buildable<SelectModel> selectModelBuilder) InsertSelectDSL.SelectGatherer.withSelectStatement(Buildable<SelectModel> selectModelBuilder) -
Uses of SelectModel in org.mybatis.dynamic.sql.select
Methods in org.mybatis.dynamic.sql.select that return SelectModelModifier and TypeMethodDescriptionSelectModel.Builder.build()MultiSelectModel.initialSelect()SubQuery.selectModel()UnionQuery.selectModel()Methods in org.mybatis.dynamic.sql.select that return types with arguments of type SelectModelModifier and TypeMethodDescriptionstatic CountDSL.FromGatherer<SelectModel>CountDSL.count(BasicColumn column) static CountDSL.FromGatherer<SelectModel>CountDSL.countDistinct(BasicColumn column) static CountDSL<SelectModel>SelectDSL.select(Collection<BasicColumn> selectList) SelectDSL.select(BasicColumn... selectList) SelectDSL.selectDistinct(Collection<BasicColumn> selectList) SelectDSL.selectDistinct(BasicColumn... selectList) Methods in org.mybatis.dynamic.sql.select with parameters of type SelectModelModifier and TypeMethodDescriptionMultiSelectModel.Builder.withInitialSelect(SelectModel initialSelect) SubQuery.Builder.withSelectModel(SelectModel selectModel) Method parameters in org.mybatis.dynamic.sql.select with type arguments of type SelectModelModifier and TypeMethodDescriptionprotected static SubQueryAbstractQueryExpressionDSL.buildSubQuery(Buildable<SelectModel> selectModel) protected static SubQueryAbstractQueryExpressionDSL.buildSubQuery(Buildable<SelectModel> selectModel, String alias) static <R> CountDSL.FromGatherer<R>CountDSL.count(Function<SelectModel, R> adapterFunction, BasicColumn column) static <R> CountDSL.FromGatherer<R>CountDSL.countDistinct(Function<SelectModel, R> adapterFunction, BasicColumn column) static <R> CountDSL<R>CountDSL.countFrom(Function<SelectModel, R> adapterFunction, SqlTable table) QueryExpressionDSL.FromGatherer.from(Buildable<SelectModel> select) QueryExpressionDSL.FromGatherer.from(Buildable<SelectModel> select, String tableAlias) AbstractQueryExpressionDSL.fullJoin(Buildable<SelectModel> subQuery, String tableAlias, JoinCriterion onJoinCriterion, List<JoinCriterion> andJoinCriteria) QueryExpressionDSL.fullJoin(Buildable<SelectModel> joinTable, String tableAlias) QueryExpressionDSL.JoinSpecificationFinisher.fullJoin(Buildable<SelectModel> joinTable, String tableAlias) AbstractQueryExpressionDSL.join(Buildable<SelectModel> subQuery, String tableAlias, JoinCriterion onJoinCriterion, List<JoinCriterion> andJoinCriteria) QueryExpressionDSL.join(Buildable<SelectModel> joinTable, String tableAlias) QueryExpressionDSL.JoinSpecificationFinisher.join(Buildable<SelectModel> joinTable, String tableAlias) AbstractQueryExpressionDSL.leftJoin(Buildable<SelectModel> subQuery, String tableAlias, JoinCriterion onJoinCriterion, List<JoinCriterion> andJoinCriteria) QueryExpressionDSL.JoinSpecificationFinisher.leftJoin(Buildable<SelectModel> joinTable, String tableAlias) QueryExpressionDSL.leftJoin(Buildable<SelectModel> joinTable, String tableAlias) AbstractQueryExpressionDSL.rightJoin(Buildable<SelectModel> subQuery, String tableAlias, JoinCriterion onJoinCriterion, List<JoinCriterion> andJoinCriteria) QueryExpressionDSL.JoinSpecificationFinisher.rightJoin(Buildable<SelectModel> joinTable, String tableAlias) QueryExpressionDSL.rightJoin(Buildable<SelectModel> joinTable, String tableAlias) static <R> QueryExpressionDSL.FromGatherer<R>SelectDSL.select(Function<SelectModel, R> adapterFunction, Collection<BasicColumn> selectList) static <R> QueryExpressionDSL.FromGatherer<R>SelectDSL.select(Function<SelectModel, R> adapterFunction, BasicColumn... selectList) static <R> QueryExpressionDSL.FromGatherer<R>SelectDSL.selectDistinct(Function<SelectModel, R> adapterFunction, Collection<BasicColumn> selectList) static <R> QueryExpressionDSL.FromGatherer<R>SelectDSL.selectDistinct(Function<SelectModel, R> adapterFunction, BasicColumn... selectList) MultiSelectDSL.union(Buildable<SelectModel> builder) MultiSelectDSL.unionAll(Buildable<SelectModel> builder) Constructors in org.mybatis.dynamic.sql.select with parameters of type SelectModelConstructor parameters in org.mybatis.dynamic.sql.select with type arguments of type SelectModelModifierConstructorDescriptionFromGatherer(Function<SelectModel, R> adapterFunction, BasicColumn column) MultiSelectDSL(Buildable<SelectModel> builder) -
Uses of SelectModel in org.mybatis.dynamic.sql.select.render
Methods in org.mybatis.dynamic.sql.select.render with parameters of type SelectModelModifier and TypeMethodDescriptionSelectRenderer.Builder.withSelectModel(SelectModel selectModel) static SelectRenderer.BuilderSelectRenderer.withSelectModel(SelectModel selectModel) -
Uses of SelectModel in org.mybatis.dynamic.sql.update
Method parameters in org.mybatis.dynamic.sql.update with type arguments of type SelectModelModifier and TypeMethodDescriptionUpdateDSL.SetClauseFinisher.equalTo(Buildable<SelectModel> buildable) -
Uses of SelectModel in org.mybatis.dynamic.sql.util
Methods in org.mybatis.dynamic.sql.util that return SelectModelMethod parameters in org.mybatis.dynamic.sql.util with type arguments of type SelectModelModifier and TypeMethodDescriptionstatic SelectMappingSelectMapping.of(SqlColumn<?> column, Buildable<SelectModel> selectModelBuilder) -
Uses of SelectModel in org.mybatis.dynamic.sql.util.mybatis3
Method parameters in org.mybatis.dynamic.sql.util.mybatis3 with type arguments of type SelectModelModifier and TypeMethodDescriptionstatic longMyBatis3Utils.countFrom(ToLongFunction<SelectStatementProvider> mapper, CountDSL<SelectModel> start, CountDSLCompleter completer) static SelectStatementProviderMyBatis3Utils.countFrom(CountDSL<SelectModel> start, CountDSLCompleter completer) static SelectStatementProviderMyBatis3Utils.select(QueryExpressionDSL<SelectModel> start, SelectDSLCompleter completer) static <R> List<R>MyBatis3Utils.selectList(Function<SelectStatementProvider, List<R>> mapper, QueryExpressionDSL<SelectModel> start, SelectDSLCompleter completer) static <R> RMyBatis3Utils.selectOne(Function<SelectStatementProvider, R> mapper, QueryExpressionDSL<SelectModel> start, SelectDSLCompleter completer) -
Uses of SelectModel in org.mybatis.dynamic.sql.util.spring
Method parameters in org.mybatis.dynamic.sql.util.spring with type arguments of type SelectModelModifier and TypeMethodDescriptionlongNamedParameterJdbcTemplateExtensions.count(Buildable<SelectModel> countStatement) <T> List<T>NamedParameterJdbcTemplateExtensions.selectList(Buildable<SelectModel> selectStatement, org.springframework.jdbc.core.RowMapper<T> rowMapper) <T> Optional<T>NamedParameterJdbcTemplateExtensions.selectOne(Buildable<SelectModel> selectStatement, org.springframework.jdbc.core.RowMapper<T> rowMapper) -
Uses of SelectModel in org.mybatis.dynamic.sql.util.springbatch
Constructors in org.mybatis.dynamic.sql.util.springbatch with parameters of type SelectModelModifierConstructorDescriptionSpringBatchCursorReaderSelectModel(SelectModel selectModel) SpringBatchPagingReaderSelectModel(SelectModel selectModel) -
Uses of SelectModel in org.mybatis.dynamic.sql.where.condition
Method parameters in org.mybatis.dynamic.sql.where.condition with type arguments of type SelectModelModifier and TypeMethodDescriptionstatic <T> IsEqualToWithSubselect<T>IsEqualToWithSubselect.of(Buildable<SelectModel> selectModelBuilder) static <T> IsGreaterThanOrEqualToWithSubselect<T>IsGreaterThanOrEqualToWithSubselect.of(Buildable<SelectModel> selectModelBuilder) static <T> IsGreaterThanWithSubselect<T>IsGreaterThanWithSubselect.of(Buildable<SelectModel> selectModelBuilder) static <T> IsInWithSubselect<T>IsInWithSubselect.of(Buildable<SelectModel> selectModelBuilder) static <T> IsLessThanOrEqualToWithSubselect<T>IsLessThanOrEqualToWithSubselect.of(Buildable<SelectModel> selectModelBuilder) static <T> IsLessThanWithSubselect<T>IsLessThanWithSubselect.of(Buildable<SelectModel> selectModelBuilder) static <T> IsNotEqualToWithSubselect<T>IsNotEqualToWithSubselect.of(Buildable<SelectModel> selectModelBuilder) static <T> IsNotInWithSubselect<T>IsNotInWithSubselect.of(Buildable<SelectModel> selectModelBuilder) Constructor parameters in org.mybatis.dynamic.sql.where.condition with type arguments of type SelectModelModifierConstructorDescriptionprotectedIsEqualToWithSubselect(Buildable<SelectModel> selectModelBuilder) protectedIsGreaterThanOrEqualToWithSubselect(Buildable<SelectModel> selectModelBuilder) protectedIsGreaterThanWithSubselect(Buildable<SelectModel> selectModelBuilder) protectedIsInWithSubselect(Buildable<SelectModel> selectModelBuilder) protectedIsLessThanOrEqualToWithSubselect(Buildable<SelectModel> selectModelBuilder) protectedIsLessThanWithSubselect(Buildable<SelectModel> selectModelBuilder) protectedIsNotEqualToWithSubselect(Buildable<SelectModel> selectModelBuilder) protectedIsNotInWithSubselect(Buildable<SelectModel> selectModelBuilder)