Uses of Class
org.mybatis.dynamic.sql.where.condition.IsNotLike
-
Packages that use IsNotLike Package Description org.mybatis.dynamic.sql org.mybatis.dynamic.sql.where.condition -
-
Uses of IsNotLike in org.mybatis.dynamic.sql
Methods in org.mybatis.dynamic.sql that return IsNotLike Modifier and Type Method Description static <T> IsNotLike<T>SqlBuilder. isNotLike(Supplier<T> valueSupplier)static <T> IsNotLike<T>SqlBuilder. isNotLike(T value)static <T> IsNotLike<T>SqlBuilder. isNotLikeWhenPresent(Supplier<T> valueSupplier)static <T> IsNotLike<T>SqlBuilder. isNotLikeWhenPresent(T value) -
Uses of IsNotLike in org.mybatis.dynamic.sql.where.condition
Methods in org.mybatis.dynamic.sql.where.condition that return IsNotLike Modifier and Type Method Description static <T> IsNotLike<T>IsNotLike. empty()IsNotLike<T>IsNotLike. filter(Predicate<? super T> predicate)<R> IsNotLike<R>IsNotLike. 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> IsNotLike<T>IsNotLike. of(T value)IsNotLike<T>IsNotLike. then(UnaryOperator<T> mapper)Deprecated.replaced bymap(Function)IsNotLike<T>IsNotLike. when(Predicate<T> predicate)Deprecated.replaced byfilter(Predicate)
-