Return - the return typeParam1 - the first parameterParam2 - the second parameterE - the exceptionpublic interface Func2E<Param1,Param2,Return,E extends java.lang.Exception>
Func1 is used in a method parameter declaration, you
may consider using wildcards:
<T, U, V> V someMethod(Func2<? super T, ? super U, ? extends V> f);
| Modifier and Type | Method and Description |
|---|---|
Return |
invoke(Param1 param1,
Param2 param2)
The method that gets invoked with two parameters.
|