Class ContainsPredicate<T>
- java.lang.Object
-
- org.apache.ignite.internal.util.lang.gridfunc.ContainsPredicate<T>
-
- Type Parameters:
T- Type of the free variable for the predicate and type of the collection elements.
- All Implemented Interfaces:
Serializable,IgnitePredicate<T>
public class ContainsPredicate<T> extends Object implements IgnitePredicate<T>
Predicate which returnstrueif it receives an element that is contained in the passed in collection.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ContainsPredicate(Collection<? extends T> c)
-
-
-
Constructor Detail
-
ContainsPredicate
public ContainsPredicate(Collection<? extends T> c)
- Parameters:
c- Collection to check for containment.
-
-