public final class JSFunctionAdapter extends Object
| Modifier and Type | Method and Description |
|---|---|
static <T> T |
apply(Object function,
Object receiver,
Array<?> args) |
static void |
call(Callback0 function,
Object receiver) |
static <P1> void |
call(Callback1<P1> function,
Object receiver,
P1 p1) |
static <P1,P2> void |
call(Callback2<P1,P2> function,
Object receiver,
P1 p1,
P2 p2) |
static <P1,P2,P3> void |
call(Callback3<P1,P2,P3> function,
Object receiver,
P1 p1,
P2 p2,
P3 p3) |
static <P1,P2,P3,P4> |
call(Callback4<P1,P2,P3,P4> function,
Object receiver,
P1 p1,
P2 p2,
P3 p3,
P4 p4) |
static <R> R |
call(Function0<R> function,
Object receiver) |
static <P1,R> void |
call(Function1<P1,R> function,
Object receiver,
P1 p1) |
static <P1,P2,R> void |
call(Function2<P1,P2,R> function,
Object receiver,
P1 p1,
P2 p2) |
static <P1,P2,P3,R> |
call(Function3<P1,P2,P3,R> function,
Object receiver,
P1 p1,
P2 p2,
P3 p3) |
static <P1,P2,P3,P4,R> |
call(Function4<P1,P2,P3,P4,R> function,
Object receiver,
P1 p1,
P2 p2,
P3 p3,
P4 p4) |
static <T> T |
call(Object function,
Object receiver,
Object... args) |
public static <P1,P2,P3> void call(Callback3<P1,P2,P3> function, Object receiver, P1 p1, P2 p2, P3 p3)
public static <P1,P2,P3,P4> void call(Callback4<P1,P2,P3,P4> function, Object receiver, P1 p1, P2 p2, P3 p3, P4 p4)
public static <P1,P2,P3,R> void call(Function3<P1,P2,P3,R> function, Object receiver, P1 p1, P2 p2, P3 p3)
public static <P1,P2,P3,P4,R> void call(Function4<P1,P2,P3,P4,R> function, Object receiver, P1 p1, P2 p2, P3 p3, P4 p4)
Copyright © 2015. All Rights Reserved.