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 CallbackAbstractListValueCondition. emptyCallbackMethods in org.mybatis.dynamic.sql that return Callback Modifier and Type Method Description static CallbackCallback. exceptionThrowingCallback(String message)static CallbackCallback. 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)IsInCaseInsensitiveIsInCaseInsensitive. withListEmptyCallback(Callback callback)IsNotIn<T>IsNotIn. withListEmptyCallback(Callback callback)IsNotInCaseInsensitiveIsNotInCaseInsensitive. 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)
-