Interface IsNotNull<T,R>
-
- All Superinterfaces:
NullPredicate<T,R>,Predicate<T>
public interface IsNotNull<T,R> extends NullPredicate<T,R>
- Since:
- 3.1.2
- Author:
- Emil Forslund
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description IsNull<T,R>negate()default NullPredicateTypenullPredicateType()If this predicate represents a simplea == nullora != nullpredicate on the mapped value, then this method may choose to return a special value so that the predicate may be short-circuited.default booleantest(T in)-
Methods inherited from interface com.speedment.runtime.compute.expression.predicate.NullPredicate
expression
-
-
-
-
Method Detail
-
nullPredicateType
default NullPredicateType nullPredicateType()
Description copied from interface:NullPredicateIf this predicate represents a simplea == nullora != nullpredicate on the mapped value, then this method may choose to return a special value so that the predicate may be short-circuited. The method may always returnNullPredicateType.OTHER, in which case no such optimization can be done.- Specified by:
nullPredicateTypein interfaceNullPredicate<T,R>- Returns:
- the type of predicate this represents
-
-