Interface Predicate<T>

  • All Known Implementing Classes:
    IsNullPredicate

    public interface Predicate<T>
    A function that tests an object for a property.
    • Method Detail

      • test

        boolean test​(T toTest)
        Performs the test.
        Parameters:
        toTest - the object to test
        Returns:
        true if the test is successful