Param1 - the first parameterReturn - the return typepublic interface Func1<Param1,Return>
Func1 is used in a method parameter declaration, you
may consider using wildcards:
<T, U> U someMethod(Func1<? super T, ? extends U> f);
| Modifier and Type | Method and Description |
|---|---|
Return |
invoke(Param1 param1)
The method that gets invoked with a parameter.
|