Class AbstractPredicate<T>

    • Constructor Summary

      Constructors 
      Constructor Description
      AbstractPredicate()
      Constructs a new instance.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean evaluate​(T object)
      Use the specified parameter to perform a test that returns true or false.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.function.Predicate

        and, negate, or
      • Methods inherited from interface org.apache.commons.collections4.Predicate

        test
    • Method Detail

      • evaluate

        public boolean evaluate​(T object)
        Description copied from interface: Predicate
        Use the specified parameter to perform a test that returns true or false.
        Specified by:
        evaluate in interface Predicate<T>
        Parameters:
        object - the object to evaluate, should not be changed
        Returns:
        true or false