F1 - First argument typeF2 - Second argument typeF3 - Third argument typeT - Result typepublic interface TripleFunction<F1,F2,F3,T> extends Serializable
| Modifier and Type | Method and Description |
|---|---|
T |
apply(F1 input1,
F2 input2,
F3 input3)
Returns the result of applying this function to given
input1, input2 and input3. |
T apply(F1 input1, F2 input2, F3 input3)
input1, input2 and input3.
The returned object may or may not be a new instance,
depending on the implementation.input1 - first inputinput2 - second inputinput3 - third inputCopyright © 2011-2020 The Apache Software Foundation. All Rights Reserved.