Uses of Interface
org.mybatis.dynamic.sql.util.Buildable
-
-
Uses of Buildable in org.mybatis.dynamic.sql
Methods in org.mybatis.dynamic.sql with parameters of type Buildable 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)
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.insert
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
QueryExpressionDSL<R>
class
QueryExpressionDSL.GroupByFinisher
class
QueryExpressionDSL.JoinSpecificationFinisher
class
QueryExpressionDSL.QueryExpressionWhereBuilder
class
SelectDSL<R>
Implements a standard SQL dialect for building model classes.class
SelectDSL.LimitFinisher
class
SelectDSL.OffsetFinisher
class
SelectDSL.OffsetFirstFinisher
class
SelectDSL.RowsOnlyFinisher
-
Uses of Buildable in org.mybatis.dynamic.sql.update
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.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)
-