Interface ExpressionFactory.TriFunction<T,U,V,R>
-
- Type Parameters:
T- The type of the first argumentU- The type of the second argumentV- The type of the third argumentR- The type of the result of the function
- Enclosing class:
- ExpressionFactory
- 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 static interface ExpressionFactory.TriFunction<T,U,V,R>
Represents a function that accepts three arguments and produces a result. This is a specialization ofFunction. This is a functional interface whose functional method isapply(Object, Object, Object).- See Also:
Function,BiFunction
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rapply(T t, U u, V v)Call the function
-