Interface ThrowableFunction<P,R,E extends Throwable>

Type Parameters:
P - parameter type
R - result type
E - exception type
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ThrowableFunction<P,R,E extends Throwable>
Functional interface which is similar to Function but which might throw an exception.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(P p)
     
  • Method Details