Uses of Interface
org.mybatis.dynamic.sql.util.Buildable
-
-
Uses of Buildable in org.mybatis.dynamic.sql
Constructors in org.mybatis.dynamic.sql with parameters of type Buildable Constructor Description AbstractSubselectCondition(Buildable<SelectModel> selectModelBuilder)
-
Uses of Buildable in org.mybatis.dynamic.sql.delete
Classes in org.mybatis.dynamic.sql.delete that implement Buildable Modifier and Type Class Description class
DeleteDSL<R>
class
DeleteDSL.DeleteWhereBuilder
-
Uses of Buildable in org.mybatis.dynamic.sql.insert
Classes in org.mybatis.dynamic.sql.insert that implement Buildable Modifier and Type Class Description class
BatchInsertDSL<T>
class
GeneralInsertDSL
class
InsertDSL<T>
class
MultiRowInsertDSL<T>
Methods in org.mybatis.dynamic.sql.insert with parameters of type Buildable Modifier and Type Method Description InsertSelectDSL
InsertSelectDSL.InsertColumnGatherer. withSelectStatement(Buildable<SelectModel> selectModelBuilder)
InsertSelectDSL
InsertSelectDSL.SelectGatherer. withSelectStatement(Buildable<SelectModel> selectModelBuilder)
-
Uses of Buildable in org.mybatis.dynamic.sql.select
Classes in org.mybatis.dynamic.sql.select that implement Buildable Modifier and Type Class Description class
AbstractQueryExpressionDSL<T extends AbstractQueryExpressionDSL<T,R>,R>
class
CountDSL<R>
DSL for building count queries.class
CountDSL.CountWhereBuilder
class
QueryExpressionDSL<R>
class
QueryExpressionDSL.GroupByFinisher
class
QueryExpressionDSL.JoinSpecificationFinisher
class
QueryExpressionDSL.QueryExpressionWhereBuilder
class
SelectDSL<R>
Implements a SQL DSL for building select statements.class
SelectDSL.LimitFinisher
class
SelectDSL.OffsetFinisher
class
SelectDSL.OffsetFirstFinisher
class
SelectDSL.RowsOnlyFinisher
-
Uses of Buildable in org.mybatis.dynamic.sql.update
Classes in org.mybatis.dynamic.sql.update that implement Buildable Modifier and Type Class Description class
UpdateDSL<R>
class
UpdateDSL.UpdateWhereBuilder
Methods in org.mybatis.dynamic.sql.update with parameters of type Buildable Modifier and Type Method Description UpdateDSL<R>
UpdateDSL.SetClauseFinisher. equalTo(Buildable<SelectModel> buildable)
-
Uses of Buildable in org.mybatis.dynamic.sql.util
Methods in org.mybatis.dynamic.sql.util with parameters of type Buildable Modifier and Type Method Description static SelectMapping
SelectMapping. of(SqlColumn<?> column, Buildable<SelectModel> selectModelBuilder)
-
Uses of Buildable in org.mybatis.dynamic.sql.util.spring
Methods in org.mybatis.dynamic.sql.util.spring with parameters of type Buildable Modifier and Type Method Description long
NamedParameterJdbcTemplateExtensions. count(Buildable<SelectModel> countStatement)
int
NamedParameterJdbcTemplateExtensions. delete(Buildable<DeleteModel> deleteStatement)
int
NamedParameterJdbcTemplateExtensions. generalInsert(Buildable<GeneralInsertModel> insertStatement)
int
NamedParameterJdbcTemplateExtensions. generalInsert(Buildable<GeneralInsertModel> insertStatement, org.springframework.jdbc.support.KeyHolder keyHolder)
<T> int
NamedParameterJdbcTemplateExtensions. insert(Buildable<InsertModel<T>> insertStatement)
<T> int
NamedParameterJdbcTemplateExtensions. insert(Buildable<InsertModel<T>> insertStatement, org.springframework.jdbc.support.KeyHolder keyHolder)
<T> int[]
NamedParameterJdbcTemplateExtensions. insertBatch(Buildable<BatchInsertModel<T>> insertStatement)
<T> int
NamedParameterJdbcTemplateExtensions. insertMultiple(Buildable<MultiRowInsertModel<T>> insertStatement)
<T> int
NamedParameterJdbcTemplateExtensions. insertMultiple(Buildable<MultiRowInsertModel<T>> insertStatement, org.springframework.jdbc.support.KeyHolder keyHolder)
<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)
int
NamedParameterJdbcTemplateExtensions. update(Buildable<UpdateModel> updateStatement)
-
Uses of Buildable in org.mybatis.dynamic.sql.where.condition
Methods in org.mybatis.dynamic.sql.where.condition with parameters of type Buildable 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)
Constructors in org.mybatis.dynamic.sql.where.condition with parameters of type Buildable 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)
-