-
public interface BetweenAndStep4<T1,T2,T3,T4>
An intermediate DSL type for the construction of aBETWEEN
predicate.- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Condition
and(Field<T1> maxValue1, Field<T2> maxValue2, Field<T3> maxValue3, Field<T4> maxValue4)
Create a condition to check this field against some boundsCondition
and(Record4<T1,T2,T3,T4> maxValue)
Create a condition to check this field against some boundsCondition
and(Row4<T1,T2,T3,T4> maxValue)
Create a condition to check this field against some boundsCondition
and(T1 maxValue1, T2 maxValue2, T3 maxValue3, T4 maxValue4)
Create a condition to check this field against some bounds
-
-
-
Method Detail
-
and
@Support Condition and(Field<T1> maxValue1, Field<T2> maxValue2, Field<T3> maxValue3, Field<T4> maxValue4)
Create a condition to check this field against some bounds
-
and
@Support Condition and(T1 maxValue1, T2 maxValue2, T3 maxValue3, T4 maxValue4)
Create a condition to check this field against some bounds
-
and
@Support Condition and(Row4<T1,T2,T3,T4> maxValue)
Create a condition to check this field against some bounds
-
-