Class IsNotBetweenWhenPresent<T>
- java.lang.Object
-
- org.mybatis.dynamic.sql.AbstractTwoValueCondition<T>
-
- org.mybatis.dynamic.sql.where.condition.IsNotBetween<T>
-
- org.mybatis.dynamic.sql.where.condition.IsNotBetweenWhenPresent<T>
-
- All Implemented Interfaces:
VisitableCondition<T>
public class IsNotBetweenWhenPresent<T> extends IsNotBetween<T>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
IsNotBetweenWhenPresent.Builder<T>
-
Field Summary
-
Fields inherited from class org.mybatis.dynamic.sql.AbstractTwoValueCondition
valueSupplier1, valueSupplier2
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
IsNotBetweenWhenPresent(java.util.function.Supplier<T> valueSupplier1, java.util.function.Supplier<T> valueSupplier2)
-
Method Summary
Modifier and Type Method Description static <T> IsNotBetweenWhenPresent.Builder<T>
isNotBetweenWhenPresent(java.util.function.Supplier<T> valueSupplier)
IsNotBetweenWhenPresent<T>
then(java.util.function.UnaryOperator<T> transformer1, java.util.function.UnaryOperator<T> transformer2)
-
Methods inherited from class org.mybatis.dynamic.sql.where.condition.IsNotBetween
isNotBetween, renderCondition, when
-
Methods inherited from class org.mybatis.dynamic.sql.AbstractTwoValueCondition
accept, shouldRender, value1, value2
-
-
-
-
Method Detail
-
isNotBetweenWhenPresent
public static <T> IsNotBetweenWhenPresent.Builder<T> isNotBetweenWhenPresent(java.util.function.Supplier<T> valueSupplier)
-
then
public IsNotBetweenWhenPresent<T> then(java.util.function.UnaryOperator<T> transformer1, java.util.function.UnaryOperator<T> transformer2)
- Overrides:
then
in classIsNotBetween<T>
-
-