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