Uses of Interface
org.mybatis.dynamic.sql.Callback
-
Packages that use Callback Package Description org.mybatis.dynamic.sql org.mybatis.dynamic.sql.where.condition -
-
Uses of Callback in org.mybatis.dynamic.sql
Fields in org.mybatis.dynamic.sql declared as Callback Modifier and Type Field Description protected Callback
AbstractListValueCondition. emptyCallback
Methods in org.mybatis.dynamic.sql that return Callback Modifier and Type Method Description static Callback
Callback. exceptionThrowingCallback(String message)
static Callback
Callback. exceptionThrowingCallback(String message, Function<String,? extends RuntimeException> exceptionBuilder)
Methods in org.mybatis.dynamic.sql with parameters of type Callback Modifier and Type Method Description abstract AbstractListValueCondition<T>
AbstractListValueCondition. withListEmptyCallback(Callback callback)
Method parameters in org.mybatis.dynamic.sql with type arguments of type Callback 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)
Constructors in org.mybatis.dynamic.sql with parameters of type Callback Constructor Description AbstractListValueCondition(Collection<T> values, Callback emptyCallback)
-
Uses of Callback in org.mybatis.dynamic.sql.where.condition
Methods in org.mybatis.dynamic.sql.where.condition with parameters of type Callback Modifier and Type Method Description IsIn<T>
IsIn. withListEmptyCallback(Callback callback)
IsInCaseInsensitive
IsInCaseInsensitive. withListEmptyCallback(Callback callback)
IsNotIn<T>
IsNotIn. withListEmptyCallback(Callback callback)
IsNotInCaseInsensitive
IsNotInCaseInsensitive. withListEmptyCallback(Callback callback)
Constructors in org.mybatis.dynamic.sql.where.condition with parameters of type Callback Constructor Description IsIn(Collection<T> values, Callback emptyCallback)
IsInCaseInsensitive(Collection<String> values, Callback emptyCallback)
IsNotIn(Collection<T> values, Callback emptyCallback)
IsNotInCaseInsensitive(Collection<String> values, Callback emptyCallback)
-