Package org.elasticsearch.common
Interface TriFunction<S,T,U,R>
- Type Parameters:
S
- the type of the first argumentT
- the type of the second argumentU
- the type of the third argumentR
- the return type
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Represents a function that accepts three arguments and produces a result.
-
Method Summary
-
Method Details
-
apply
Applies this function to the given arguments.- Parameters:
s
- the first function argumentt
- the second function argumentu
- the third function argument- Returns:
- the result
-