Class IsAllPredicate<T>
- java.lang.Object
-
- org.apache.ignite.internal.util.lang.gridfunc.IsAllPredicate<T>
-
- Type Parameters:
T- Type of the free variable, i.e. the element the predicate is called on.
- All Implemented Interfaces:
Serializable,IgnitePredicate<T>
public class IsAllPredicate<T> extends Object implements IgnitePredicate<T>
Predicate that evaluates totrueif each of its component preds evaluates totrue.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IsAllPredicate(IgnitePredicate<? super T>... preds)
-
-
-
Constructor Detail
-
IsAllPredicate
public IsAllPredicate(IgnitePredicate<? super T>... preds)
- Parameters:
preds- Passed in predicate. If none provided - always-falsepredicate is returned.
-
-