Package org.apache.calcite.runtime
Class PredicateImpl<T>
java.lang.Object
org.apache.calcite.runtime.PredicateImpl<T>
- Type Parameters:
T
- the type of the input to the predicate
- All Implemented Interfaces:
com.google.common.base.Predicate<T>
,Predicate<T>
public abstract class PredicateImpl<T>
extends Object
implements com.google.common.base.Predicate<T>
Deprecated.
Abstract implementation of
Predicate
.
Derived class needs to implement the test(T)
method.
Helps with the transition to java.util.function.Predicate
,
which was introduced in JDK 1.8, and is required in Guava 21.0 and higher,
but still works on JDK 1.7.
-
Constructor Details
-
PredicateImpl
public PredicateImpl()Deprecated.
-
-
Method Details
Predicate
directly.