Interface IPredicate<T>


public interface IPredicate<T>
This interface is implemented by classes, instances of which can be passed into certain Util functions which test some collection for elements matching the IPredicate. (IPredicate.test(...) == true)
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    test(T obj)
     
  • Method Details

    • test

      boolean test(T obj)