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