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