O1
- the type of the first argument to the functionO2
- the type of the second argument to the functionO3
- the type of the third argument to the functionR
- the type of the result of the function@FunctionalInterface
public interface TriFunction<O1,O2,O3,R>
This is a functional interface whose functional method is
apply(Object, Object, Object)
.
Modifier and Type | Method and Description |
---|---|
R |
apply(O1 firstOperand,
O2 secondOperand,
O3 thirdOperand)
Applies this function to the given arguments.
|
R apply(O1 firstOperand, O2 secondOperand, O3 thirdOperand)
firstOperand
- the first function argumentsecondOperand
- the second function argumentthirdOperand
- the third function argument