Interface Throwing.Predicate<T,E extends Throwable>
-
- Enclosing interface:
- Throwing
- 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 static interface Throwing.Predicate<T,E extends Throwable>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default <E2 extends E>
Throwing.Predicate<T,E>and(Throwing.Predicate<? super T,E2> p2)
default Throwing.Predicate<T,E>
negate()
default <E2 extends E>
Throwing.Predicate<T,E>or(Throwing.Predicate<? super T,E2> p2)
boolean
test(T t)
-
-
-
Method Detail
-
and
default <E2 extends E> Throwing.Predicate<T,E> and(Throwing.Predicate<? super T,E2> p2)
-
or
default <E2 extends E> Throwing.Predicate<T,E> or(Throwing.Predicate<? super T,E2> p2)
-
negate
default Throwing.Predicate<T,E> negate()
-
-