-
- Type Parameters:
A
- first argument typeB
- second argument typeC
- third argument typeD
- fourth argument typeR
- the return type
- All Superinterfaces:
Functions.BiFunction<A,B,R>
,Functions.Function<A,R>
,Functions.TriFunction<A,B,C,R>
- Enclosing class:
- Functions
- 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 Functions.QuadriFunction<A,B,C,D,R> extends Functions.TriFunction<A,B,C,R>
Represents a function that accepts four arguments and produces a result.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default R
apply(A a, B b, C c)
Applies this function to the given arguments.R
apply(A a, B b, C c, D d)
Applies this function to the given arguments.-
Methods inherited from interface aeonics.util.Functions.BiFunction
apply
-
Methods inherited from interface aeonics.util.Functions.TriFunction
apply
-
-
-
-
Method Detail
-
apply
default R apply(A a, B b, C c) throws java.lang.Exception
Description copied from interface:Functions.TriFunction
Applies this function to the given arguments.
-
-