Uses of Class
org.mybatis.dynamic.sql.AbstractListValueCondition
-
Packages that use AbstractListValueCondition Package Description org.mybatis.dynamic.sql org.mybatis.dynamic.sql.where.condition org.mybatis.dynamic.sql.where.render -
-
Uses of AbstractListValueCondition in org.mybatis.dynamic.sql
Methods in org.mybatis.dynamic.sql with type parameters of type AbstractListValueCondition Modifier and Type Method Description protected <S extends AbstractListValueCondition<T>>
SAbstractListValueCondition. filterSupport(Predicate<? super T> predicate, BiFunction<Collection<T>,Callback,S> constructor, S self, Supplier<S> emptySupplier)
protected <R,S extends AbstractListValueCondition<R>>
SAbstractListValueCondition. mapSupport(Function<? super T,? extends R> mapper, BiFunction<Collection<R>,Callback,S> constructor, Supplier<S> emptySupplier)
Methods in org.mybatis.dynamic.sql that return AbstractListValueCondition Modifier and Type Method Description abstract AbstractListValueCondition<T>
AbstractListValueCondition. filter(Predicate<? super T> predicate)
If renderable, apply the predicate to each value in the list and return a new condition with the filtered values.abstract AbstractListValueCondition<T>
AbstractListValueCondition. withListEmptyCallback(Callback callback)
Methods in org.mybatis.dynamic.sql with parameters of type AbstractListValueCondition Modifier and Type Method Description R
ConditionVisitor. visit(AbstractListValueCondition<T> condition)
-
Uses of AbstractListValueCondition in org.mybatis.dynamic.sql.where.condition
Subclasses of AbstractListValueCondition in org.mybatis.dynamic.sql.where.condition Modifier and Type Class Description class
IsIn<T>
class
IsInCaseInsensitive
class
IsNotIn<T>
class
IsNotInCaseInsensitive
-
Uses of AbstractListValueCondition in org.mybatis.dynamic.sql.where.render
Methods in org.mybatis.dynamic.sql.where.render with parameters of type AbstractListValueCondition Modifier and Type Method Description FragmentAndParameters
WhereConditionVisitor. visit(AbstractListValueCondition<T> condition)
-