Interface IsNull<T,​R>

    • Method Detail

      • nullPredicateType

        default NullPredicateType nullPredicateType()
        Description copied from interface: NullPredicate
        If this predicate represents a simple a == null or a != null predicate 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 return NullPredicateType.OTHER, in which case no such optimization can be done.
        Specified by:
        nullPredicateType in interface NullPredicate<T,​R>
        Returns:
        the type of predicate this represents
      • test

        default boolean test​(T in)
        Specified by:
        test in interface Predicate<T>