Interface Predicate<T>

All Known Implementing Classes:
IsNullPredicate

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

    Modifier and Type
    Method
    Description
    boolean
    test(T toTest)
    Performs the test.
  • Method Details

    • test

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