public interface Function
extends java.io.Serializable
Zephyr Business Solutions Corp.
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
apply(java.lang.Object[] args)
Call the function with an array of arguments.
|
java.lang.Object |
apply(java.lang.Object[] args,
int from,
int len)
Call the function with arguments stored in array args.
|
java.lang.Object |
f(java.lang.Object arg)
Call the function with one argument.
|
java.lang.Object f(java.lang.Object arg)
arg - the argument.java.lang.Object apply(java.lang.Object[] args)
args - the arguments.java.lang.Object apply(java.lang.Object[] args,
int from,
int len)
args - the array.from - the starting index of the range.len - the length of the range.