Interface ThrowingPredicate<T,E extends Throwable>


public interface ThrowingPredicate<T,E extends Throwable>
Determines a true or false value for a given input.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    apply(T input)
    Returns the result of applying this predicate to input.
  • Method Details

    • apply

      boolean apply(@Nullable T input) throws E
      Returns the result of applying this predicate to input. This method is generally expected, but not absolutely required, to have the following properties:
      • Its execution does not cause any observable side effects.
      • The computation is consistent with equals; that is, Objects.equal(java.lang.Object, java.lang.Object)(a, b) implies that predicate.apply(a) == predicate.apply(b)).
      Throws:
      NullPointerException - if input is null and this predicate does not accept null arguments
      E extends Throwable