Class NotContainsPredicate<T>
- java.lang.Object
-
- org.apache.ignite.internal.util.lang.gridfunc.NotContainsPredicate<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 NotContainsPredicate<T> extends Object implements IgnitePredicate<T>
Predicate that returnstrueif its free variable is not contained in given collection.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotContainsPredicate(Collection<? extends T> col)
-
-
-
Constructor Detail
-
NotContainsPredicate
public NotContainsPredicate(Collection<? extends T> col)
- Parameters:
col- Collection to check for containment.
-
-