Package utility.function
Interface ExceptionalFunction<I,R,E extends java.lang.Exception>
-
- Type Parameters:
I- the input typeR- the result typeE- the exception of your choice
- 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 ExceptionalFunction<I,R,E extends java.lang.Exception>A generic functional interface that allows you to consume an item, return a result, and potentially throw an exception.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rapply(I i)The method that will be called
-