Interface ThrowingIntPredicate

All Superinterfaces:
IntPredicate
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ThrowingIntPredicate extends IntPredicate
  • Method Summary

    Modifier and Type
    Method
    Description
    default boolean
    test(int value)
     
    boolean
    testThrows(int value)
     

    Methods inherited from interface java.util.function.IntPredicate

    and, negate, or
  • Method Details