Class IsNotNullPredicate<E>
- java.lang.Object
-
- org.apache.ignite.internal.util.lang.gridfunc.IsNotNullPredicate<E>
-
- Type Parameters:
E- Type of predicate parameter.
- All Implemented Interfaces:
Serializable,IgnitePredicate<E>
public class IsNotNullPredicate<E> extends Object implements IgnitePredicate<E>
Defines a predicate which checks a parameter onnull.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IsNotNullPredicate()
-
-
-
Method Detail
-
apply
public boolean apply(E e)
Description copied from interface:IgnitePredicatePredicate body.- Specified by:
applyin interfaceIgnitePredicate<E>- Parameters:
e- Parameter for check.- Returns:
- 'true' if parameter NOT equals to
null, otherwise 'false'.
-
-