Package io.openems.common.function
Interface ThrowingFunction<T,R,E extends java.lang.Exception>
-
- Type Parameters:
T
- the apply methods argument typeR
- the apply methods return typeE
- the exception type
- 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 ThrowingFunction<T,R,E extends java.lang.Exception>
This interface is similar to the java.util interfaceFunction
. Difference is, that it allows the apply() method to throw a definedException
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
apply(T t)
Applies this function to the given argument.
-