Function
public interface interface Function<T>
Methods
run
public void run(T param)
Execute the function.
Parameters
| Name | Description |
|---|---|
T param
|
an arguments to the function. |
ReturnValue
| Name | Description |
|---|---|
void
|
Represents a function that accepts one argument and does not produces a result.
This is a functional interface whose functional method isFunction.