Interface Test<T>


public interface Test<T>
This is the testing interface that is used to accept or reject resources.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    test(T t)
    The test method.
  • Method Details

    • test

      boolean test(T t)
      The test method.
      Parameters:
      t - The resource object to test.
      Returns:
      True if the resource should be accepted, false otherwise.