Uses of Class
org.mybatis.dynamic.sql.where.condition.IsLike
-
Packages that use IsLike Package Description org.mybatis.dynamic.sql org.mybatis.dynamic.sql.where.condition -
-
Uses of IsLike in org.mybatis.dynamic.sql
Methods in org.mybatis.dynamic.sql that return IsLike Modifier and Type Method Description static <T> IsLike<T>SqlBuilder. isLike(Supplier<T> valueSupplier)static <T> IsLike<T>SqlBuilder. isLike(T value)static <T> IsLike<T>SqlBuilder. isLikeWhenPresent(Supplier<T> valueSupplier)static <T> IsLike<T>SqlBuilder. isLikeWhenPresent(T value) -
Uses of IsLike in org.mybatis.dynamic.sql.where.condition
Methods in org.mybatis.dynamic.sql.where.condition that return IsLike Modifier and Type Method Description static <T> IsLike<T>IsLike. empty()IsLike<T>IsLike. filter(Predicate<? super T> predicate)<R> IsLike<R>IsLike. map(Function<? super T,? extends R> mapper)If renderable, apply the mapping to the value and return a new condition with the new value.static <T> IsLike<T>IsLike. of(T value)IsLike<T>IsLike. then(UnaryOperator<T> mapper)Deprecated.replaced bymap(Function)IsLike<T>IsLike. when(Predicate<T> predicate)Deprecated.replaced byfilter(Predicate)
-