Package io.openems.common.function
Interface ThrowingTriFunction<T,U,S,R,E extends java.lang.Exception>
-
- Type Parameters:
T
- the apply methods first argument typeU
- the apply methods second argument typeS
- the apply methods third argument typeR
- the type of the result of the functionE
- 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 ThrowingTriFunction<T,U,S,R,E extends java.lang.Exception>
This interface is similar to the java.util interfaceThrowingBiFunction
. Difference is, that it allows to pass to the apply() method one more parameter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
apply(T t, U u, S s)
Applies this function to the given arguments.
-