Interface Predicate2<T0,T1>
-
-
Field Summary
Fields Modifier and Type Field Description static Predicate2<Object,Object>FALSEPredicate that always evaluates tofalse.static Predicate2<Object,Object>TRUEPredicate that always evaluates totrue.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanapply(T0 v0, T1 v1)
-
-
-
Field Detail
-
TRUE
static final Predicate2<Object,Object> TRUE
Predicate that always evaluates totrue.- See Also:
Functions.truePredicate1()
-
FALSE
static final Predicate2<Object,Object> FALSE
Predicate that always evaluates tofalse.- See Also:
Functions.falsePredicate1()
-
-