| Package | Description |
|---|---|
| net.java.html.lib |
| Modifier and Type | Interface and Description |
|---|---|
static interface |
Function.A0<R>
Java function with no arguments.
|
static interface |
Function.A1<P1,R>
Java function with one argument.
|
static interface |
Function.A2<P1,P2,R>
Java function with two arguments.
|
static interface |
Function.A3<P1,P2,P3,R>
Java function with three arguments.
|
static interface |
Function.A4<P1,P2,P3,P4,R>
Java function with four arguments.
|
| Modifier and Type | Method and Description |
|---|---|
static Function |
Function.newFunction(Function.A5<? extends Object,? extends Object,? extends Object,? extends Object,? extends Object,? extends Object> fn)
Factory method that wraps provided function interface into JavaScript
function object.
|
static Function |
Function.newFunction(Function.A5<? extends Object,? extends Object,? extends Object,? extends Object,? extends Object,? extends Object> fn,
Class[] argTypes)
Factory method that wraps provided function interface into JavaScript
function object.
|
static <A,B,C,D,E> |
Function.newFunction(Function.A5<? super A,? super B,? super C,? super D,? super E,? extends Object> fn,
Class<A> argTypeA,
Class<B> argTypeB,
Class<C> argTypeC,
Class<D> argTypeD,
Class<E> argTypeE)
Factory method that wraps provided function interface into JavaScript
function object.
|
Copyright © 2016. All rights reserved.