- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
public interface FunctionWithException<F,T,E extends Throwable>
{
public T call(F f) throws E;
}
......
public interface Function<F,T> extends FunctionWithException<F,T,RuntimeException>
{
public T call(F f) throws RuntimeException;
}
Комментарии (0) RSS
Добавить комментарий