Class EntryByKeyEvaluationPredicate<K,V>
- java.lang.Object
-
- org.apache.ignite.internal.util.lang.gridfunc.EntryByKeyEvaluationPredicate<K,V>
-
- All Implemented Interfaces:
Serializable,IgnitePredicate<Map.Entry<K,V>>
public class EntryByKeyEvaluationPredicate<K,V> extends Object implements IgnitePredicate<Map.Entry<K,V>>
Predicate evaluates to true for given value. Note that evaluation will be short-circuit when first predicate evaluated to false is found.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EntryByKeyEvaluationPredicate(IgnitePredicate<? super K>... preds)
-
-
-
Constructor Detail
-
EntryByKeyEvaluationPredicate
public EntryByKeyEvaluationPredicate(IgnitePredicate<? super K>... preds)
- Parameters:
preds- Optional set of predicates to use for filtration. If none provided - original map (or its copy) will be returned.
-
-