Package org.eclipse.epsilon.eol.function
Interface CheckedEolPredicate<T>
- All Superinterfaces:
CheckedEolFunction<T,,Boolean> CheckedFunction<T,,Boolean, EolRuntimeException> CheckedPredicate<T,,EolRuntimeException> Function<T,,Boolean> Predicate<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 CheckedEolPredicate<T>
extends CheckedPredicate<T,EolRuntimeException>, CheckedEolFunction<T,Boolean>
- 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.eol.function.CheckedEolFunction
apply
-
Method Details
-
testThrows
- Specified by:
testThrowsin interfaceCheckedPredicate<T,EolRuntimeException> - Throws:
EolRuntimeException
-
applyThrows
- Specified by:
applyThrowsin interfaceCheckedFunction<T,Boolean, EolRuntimeException> - Specified by:
applyThrowsin interfaceCheckedPredicate<T,EolRuntimeException> - Throws:
EolRuntimeException
-
test
- Specified by:
testin interfaceCheckedPredicate<T,EolRuntimeException> - Specified by:
testin interfacePredicate<T>
-