Uses of Class
org.mybatis.dynamic.sql.SqlCriterion
-
-
Uses of SqlCriterion in org.mybatis.dynamic.sql
Methods in org.mybatis.dynamic.sql that return SqlCriterion Modifier and Type Method Description static <T> SqlCriterion<T>
SqlBuilder. and(BindableColumn<T> column, VisitableCondition<T> condition)
static <T> SqlCriterion<T>
SqlBuilder. and(BindableColumn<T> column, VisitableCondition<T> condition, SqlCriterion<?>... subCriteria)
SqlCriterion<T>
SqlCriterion.Builder. build()
static <T> SqlCriterion<T>
SqlBuilder. or(BindableColumn<T> column, VisitableCondition<T> condition)
static <T> SqlCriterion<T>
SqlBuilder. or(BindableColumn<T> column, VisitableCondition<T> condition, SqlCriterion<?>... subCriteria)
Methods in org.mybatis.dynamic.sql with parameters of type SqlCriterion Modifier and Type Method Description static <T> SqlCriterion<T>
SqlBuilder. and(BindableColumn<T> column, VisitableCondition<T> condition, SqlCriterion<?>... subCriteria)
static <T> SqlCriterion<T>
SqlBuilder. or(BindableColumn<T> column, VisitableCondition<T> condition, SqlCriterion<?>... subCriteria)
static <T> WhereDSL
SqlBuilder. where(BindableColumn<T> column, VisitableCondition<T> condition, SqlCriterion<?>... subCriteria)
Method parameters in org.mybatis.dynamic.sql with type arguments of type SqlCriterion Modifier and Type Method Description <R> Stream<R>
SqlCriterion. mapSubCriteria(Function<SqlCriterion<?>,R> mapper)
SqlCriterion.Builder<T>
SqlCriterion.Builder. withSubCriteria(List<SqlCriterion<?>> subCriteria)
-
Uses of SqlCriterion in org.mybatis.dynamic.sql.delete
Methods in org.mybatis.dynamic.sql.delete with parameters of type SqlCriterion Modifier and Type Method Description <T> DeleteDSL.DeleteWhereBuilder
DeleteDSL. where(BindableColumn<T> column, VisitableCondition<T> condition, SqlCriterion<?>... subCriteria)
-
Uses of SqlCriterion in org.mybatis.dynamic.sql.select
Methods in org.mybatis.dynamic.sql.select with parameters of type SqlCriterion Modifier and Type Method Description <T> CountDSL.CountWhereBuilder
CountDSL. where(BindableColumn<T> column, VisitableCondition<T> condition, SqlCriterion<?>... subCriteria)
<T> QueryExpressionDSL.QueryExpressionWhereBuilder
QueryExpressionDSL.JoinSpecificationFinisher. where(BindableColumn<T> column, VisitableCondition<T> condition, SqlCriterion<?>... subCriteria)
<T> QueryExpressionDSL.QueryExpressionWhereBuilder
QueryExpressionDSL. where(BindableColumn<T> column, VisitableCondition<T> condition, SqlCriterion<?>... subCriteria)
-
Uses of SqlCriterion in org.mybatis.dynamic.sql.update
Methods in org.mybatis.dynamic.sql.update with parameters of type SqlCriterion Modifier and Type Method Description <T> UpdateDSL.UpdateWhereBuilder
UpdateDSL. where(BindableColumn<T> column, VisitableCondition<T> condition, SqlCriterion<?>... subCriteria)
-
Uses of SqlCriterion in org.mybatis.dynamic.sql.where
Methods in org.mybatis.dynamic.sql.where with parameters of type SqlCriterion Modifier and Type Method Description <S> T
AbstractWhereDSL. and(BindableColumn<S> column, VisitableCondition<S> condition, SqlCriterion<?>... subCriteria)
<S> T
AbstractWhereDSL. or(BindableColumn<S> column, VisitableCondition<S> condition, SqlCriterion<?>... subCriteria)
<S> T
AbstractWhereDSL. where(BindableColumn<S> column, VisitableCondition<S> condition, SqlCriterion<?>... subCriteria)
Method parameters in org.mybatis.dynamic.sql.where with type arguments of type SqlCriterion Modifier and Type Method Description <S> T
AbstractWhereDSL. and(BindableColumn<S> column, VisitableCondition<S> condition, List<SqlCriterion<?>> subCriteria)
<R> Stream<R>
WhereModel. mapCriteria(Function<SqlCriterion<?>,R> mapper)
static WhereModel
WhereModel. of(List<SqlCriterion<?>> criteria)
<S> T
AbstractWhereDSL. or(BindableColumn<S> column, VisitableCondition<S> condition, List<SqlCriterion<?>> subCriteria)
<S> T
AbstractWhereDSL. where(BindableColumn<S> column, VisitableCondition<S> condition, List<SqlCriterion<?>> subCriteria)
-
Uses of SqlCriterion in org.mybatis.dynamic.sql.where.render
Methods in org.mybatis.dynamic.sql.where.render with parameters of type SqlCriterion Modifier and Type Method Description CriterionRenderer.Builder<T>
CriterionRenderer.Builder. withCriterion(SqlCriterion<T> sqlCriterion)
static <T> CriterionRenderer.Builder<T>
CriterionRenderer. withCriterion(SqlCriterion<T> sqlCriterion)
-