Interface CheckedPredicate<T,E extends Exception>
- All Superinterfaces:
CheckedFunction<T,,Boolean, E> Function<T,,Boolean> Predicate<T>
- All Known Subinterfaces:
CheckedEolPredicate<T>
- 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 CheckedPredicate<T,E extends Exception>
extends Predicate<T>, CheckedFunction<T,Boolean,E>
- Since:
- 1.6
- Author:
- Sina Madani
-
Method Summary
Modifier and TypeMethodDescriptiondefault BooleanapplyThrows(T t) default booleanbooleantestThrows(T t) Methods inherited from interface org.eclipse.epsilon.common.function.CheckedFunction
apply
-
Method Details
-
applyThrows
- Specified by:
applyThrowsin interfaceCheckedFunction<T,Boolean, E extends Exception> - Throws:
E extends Exception
-
test
- Specified by:
testin interfacePredicate<T>- Throws:
RuntimeException
-
testThrows
-