Interface ETriFunction<T1,T2,T3,R,E extends Exception>

Type Parameters:
T1 - the type of the first argument to the function
T2 - the type of the second argument to the function
T3 - the type of the third argument to the function
R - the type of the result of the function
E - the type of exception that the function might throw
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 ETriFunction<T1,T2,T3,R,E extends Exception>
A functional interface that represents a function accepting three arguments of types T1, T2, and T3, which produces a result of type R, and can throw an exception of type E.