- Type Parameters:
R
- first object to be processed
S
- second object to be processed
T
- third object to be processed
U
- object generated
- 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 TriFunction<R,S,T,U>
Function Interface which can process three input objects and produce an output
Used in PlanItIO test cases.
There is no equivalent functional interface in the java.util.function library so we have created
this one.
- Author:
- gman6028