Class NotNullPredicate<T>

    • Field Detail

      • INSTANCE

        public static final Predicate INSTANCE
        Singleton predicate instance
    • Method Detail

      • notNullPredicate

        public static <T> Predicate<T> notNullPredicate()
        Factory returning the singleton instance.
        Type Parameters:
        T - the type that the predicate queries
        Returns:
        the singleton instance
        Since:
        3.1
      • evaluate

        public boolean evaluate​(T object)
        Evaluates the predicate returning true if the object does not equal null.
        Specified by:
        evaluate in interface Predicate<T>
        Parameters:
        object - the object to evaluate
        Returns:
        true if not null