|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Func3 | |
---|---|
org.javimmutable.collections.util |
Uses of Func3 in org.javimmutable.collections.util |
---|
Methods in org.javimmutable.collections.util that return Func3 | ||
---|---|---|
static
|
Curry.func3(P1 param1,
Func4<P1,P2,P3,P4,R> function)
Produces a Curried Func3 that calls the provided Func4 passing it the fixed parameter param1 along with the actual parameters to the apply() method. |
|
static
|
ReflectionFunctions.method(Object obj,
String name,
Class<P1> arg1Class,
Class<P2> arg2Class,
Class<P3> arg3Class)
Returns a Func3 instance that calls the specified non-static method on the specified java object. |
|
static
|
ReflectionFunctions.method(String name,
Class<P1> arg1Class,
Class<P2> arg2Class,
Class<OT> klass)
Returns a Func3 instance that calls the specified non-static method on a java object passed as the last parameter of the Func3. |
|
static
|
ReflectionFunctions.staticMethod(Class klass,
String name,
Class<P1> arg1Class,
Class<P2> arg2Class,
Class<P3> arg3Class)
Returns a Func3 instance that calls the specified static method on the specified java object. |
Methods in org.javimmutable.collections.util with parameters of type Func3 | ||
---|---|---|
static
|
Curry.func1(P1 param1,
P2 param2,
Func3<P1,P2,P3,R> function)
Produces a Curried Func1 that calls the provided Func3 passing it the fixed parameters param1 and param2 along with the actual parameters to the apply() method. |
|
static
|
Curry.func2(P1 param1,
Func3<P1,P2,P3,R> function)
Produces a Curried Func2 that calls the provided Func3 passing it the fixed parameter param1 along with the actual parameters to the apply() method. |
|
static
|
Curry.of(Func3<P1,P2,P3,R> function,
P1 param1,
P2 param2)
Produces a Curried Func1 that calls the provided Func3 passing it the fixed parameters param1-param2 along with the actual parameter to the apply() method as the third parameter. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |