Uses of Class
org.mybatis.dynamic.sql.select.SelectModel
-
-
Uses of SelectModel in org.mybatis.dynamic.sql
Methods in org.mybatis.dynamic.sql that return SelectModel Modifier and Type Method Description SelectModel
AbstractSubselectCondition. selectModel()
Methods in org.mybatis.dynamic.sql that return types with arguments of type SelectModel Modifier and Type Method Description static 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>
SqlBuilder. countFrom(SqlTable table)
Renders as select count(*) from table...static QueryExpressionDSL.FromGatherer<SelectModel>
SqlBuilder. select(java.util.Collection<BasicColumn> selectList)
static QueryExpressionDSL.FromGatherer<SelectModel>
SqlBuilder. select(BasicColumn... selectList)
static QueryExpressionDSL.FromGatherer<SelectModel>
SqlBuilder. selectDistinct(java.util.Collection<BasicColumn> selectList)
static QueryExpressionDSL.FromGatherer<SelectModel>
SqlBuilder. selectDistinct(BasicColumn... selectList)
Method parameters in org.mybatis.dynamic.sql with type arguments of type SelectModel Modifier and Type Method Description 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)
InsertSelectDSL
SqlBuilder.InsertIntoNextStep. withSelectStatement(Buildable<SelectModel> selectModelBuilder)
Constructor parameters in org.mybatis.dynamic.sql with type arguments of type SelectModel Constructor Description AbstractSubselectCondition(Buildable<SelectModel> selectModelBuilder)
-
Uses of SelectModel in org.mybatis.dynamic.sql.insert
Methods in org.mybatis.dynamic.sql.insert that return SelectModel Modifier and Type Method Description SelectModel
InsertSelectModel. selectModel()
Methods in org.mybatis.dynamic.sql.insert with parameters of type SelectModel Modifier and Type Method Description InsertSelectModel.Builder
InsertSelectModel.Builder. withSelectModel(SelectModel selectModel)
Method parameters in org.mybatis.dynamic.sql.insert with type arguments of type SelectModel Modifier and Type Method Description InsertSelectDSL
InsertSelectDSL.InsertColumnGatherer. withSelectStatement(Buildable<SelectModel> selectModelBuilder)
InsertSelectDSL
InsertSelectDSL.SelectGatherer. withSelectStatement(Buildable<SelectModel> selectModelBuilder)
-
Uses of SelectModel in org.mybatis.dynamic.sql.select
Methods in org.mybatis.dynamic.sql.select that return SelectModel Modifier and Type Method Description SelectModel
SelectModel.Builder. build()
Methods in org.mybatis.dynamic.sql.select that return types with arguments of type SelectModel Modifier and Type Method Description static CountDSL.FromGatherer<SelectModel>
CountDSL. count(BasicColumn column)
static CountDSL.FromGatherer<SelectModel>
CountDSL. countDistinct(BasicColumn column)
static CountDSL<SelectModel>
CountDSL. countFrom(SqlTable table)
static QueryExpressionDSL.FromGatherer<SelectModel>
SelectDSL. select(java.util.Collection<BasicColumn> selectList)
static QueryExpressionDSL.FromGatherer<SelectModel>
SelectDSL. select(BasicColumn... selectList)
static QueryExpressionDSL.FromGatherer<SelectModel>
SelectDSL. selectDistinct(java.util.Collection<BasicColumn> selectList)
static QueryExpressionDSL.FromGatherer<SelectModel>
SelectDSL. selectDistinct(BasicColumn... selectList)
Methods in org.mybatis.dynamic.sql.select with parameters of type SelectModel Modifier and Type Method Description static <R> MyBatis3SelectModelAdapter<R>
MyBatis3SelectModelAdapter. of(SelectModel selectModel, java.util.function.Function<SelectStatementProvider,R> mapperMethod)
Deprecated.Method parameters in org.mybatis.dynamic.sql.select with type arguments of type SelectModel Modifier and Type Method Description static <R> CountDSL.FromGatherer<R>
CountDSL. count(java.util.function.Function<SelectModel,R> adapterFunction, BasicColumn column)
static <R> CountDSL.FromGatherer<R>
CountDSL. countDistinct(java.util.function.Function<SelectModel,R> adapterFunction, BasicColumn column)
static <R> CountDSL<R>
CountDSL. countFrom(java.util.function.Function<SelectModel,R> adapterFunction, SqlTable table)
static <R> QueryExpressionDSL.FromGatherer<R>
SelectDSL. select(java.util.function.Function<SelectModel,R> adapterFunction, java.util.Collection<BasicColumn> selectList)
static <R> QueryExpressionDSL.FromGatherer<R>
SelectDSL. select(java.util.function.Function<SelectModel,R> adapterFunction, BasicColumn... selectList)
static <R> QueryExpressionDSL.FromGatherer<R>
SelectDSL. selectDistinct(java.util.function.Function<SelectModel,R> adapterFunction, java.util.Collection<BasicColumn> selectList)
static <R> QueryExpressionDSL.FromGatherer<R>
SelectDSL. selectDistinct(java.util.function.Function<SelectModel,R> adapterFunction, BasicColumn... selectList)
Constructor parameters in org.mybatis.dynamic.sql.select with type arguments of type SelectModel Constructor Description FromGatherer(java.util.function.Function<SelectModel,R> adapterFunction, BasicColumn column)
-
Uses of SelectModel in org.mybatis.dynamic.sql.select.render
Methods in org.mybatis.dynamic.sql.select.render with parameters of type SelectModel Modifier and Type Method Description SelectRenderer.Builder
SelectRenderer.Builder. withSelectModel(SelectModel selectModel)
static SelectRenderer.Builder
SelectRenderer. 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 SelectModel Modifier and Type Method Description UpdateDSL<R>
UpdateDSL.SetClauseFinisher. equalTo(Buildable<SelectModel> buildable)
-
Uses of SelectModel in org.mybatis.dynamic.sql.util
Methods in org.mybatis.dynamic.sql.util that return SelectModel Modifier and Type Method Description SelectModel
SelectMapping. selectModel()
Method parameters in org.mybatis.dynamic.sql.util with type arguments of type SelectModel Modifier and Type Method Description static SelectMapping
SelectMapping. 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 SelectModel Modifier and Type Method Description static long
MyBatis3Utils. countFrom(java.util.function.ToLongFunction<SelectStatementProvider> mapper, CountDSL<SelectModel> start, CountDSLCompleter completer)
static SelectStatementProvider
MyBatis3Utils. countFrom(CountDSL<SelectModel> start, CountDSLCompleter completer)
static SelectStatementProvider
MyBatis3Utils. select(QueryExpressionDSL<SelectModel> start, SelectDSLCompleter completer)
static <R> java.util.List<R>
MyBatis3Utils. selectList(java.util.function.Function<SelectStatementProvider,java.util.List<R>> mapper, QueryExpressionDSL<SelectModel> start, SelectDSLCompleter completer)
static <R> R
MyBatis3Utils. selectOne(java.util.function.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 SelectModel Modifier and Type Method Description long
NamedParameterJdbcTemplateExtensions. count(Buildable<SelectModel> countStatement)
<T> java.util.List<T>
NamedParameterJdbcTemplateExtensions. selectList(Buildable<SelectModel> selectStatement, org.springframework.jdbc.core.RowMapper<T> rowMapper)
<T> java.util.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 SelectModel Constructor Description SpringBatchCursorReaderSelectModel(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 SelectModel Modifier and Type Method Description static <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 SelectModel Constructor Description IsEqualToWithSubselect(Buildable<SelectModel> selectModelBuilder)
IsGreaterThanOrEqualToWithSubselect(Buildable<SelectModel> selectModelBuilder)
IsGreaterThanWithSubselect(Buildable<SelectModel> selectModelBuilder)
IsInWithSubselect(Buildable<SelectModel> selectModelBuilder)
IsLessThanOrEqualToWithSubselect(Buildable<SelectModel> selectModelBuilder)
IsLessThanWithSubselect(Buildable<SelectModel> selectModelBuilder)
IsNotEqualToWithSubselect(Buildable<SelectModel> selectModelBuilder)
IsNotInWithSubselect(Buildable<SelectModel> selectModelBuilder)
-