Class AndGatherer<T,R>
- java.lang.Object
-
- org.mybatis.dynamic.sql.where.condition.AndGatherer<T,R>
-
- Type Parameters:
T
- the type of field for the between conditionR
- the type of condition being built
- Direct Known Subclasses:
IsBetween.Builder
,IsBetween.WhenPresentBuilder
,IsNotBetween.Builder
,IsNotBetween.WhenPresentBuilder
public abstract class AndGatherer<T,R> extends Object
Utility class supporting the "and" part of a between condition. This class supports builders, so it is mutable.- Author:
- Jeff Butler
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AndGatherer(T value1)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description R
and(Supplier<T> valueSupplier2)
R
and(T value2)
protected abstract R
build()
-