Interface ThrowableFunctionalInterfaces
-
public interface ThrowableFunctionalInterfacesCollection ofFunctionalInterfaceswhich allow simple exception handling.
Provides a set of commonly used functional interfaces that enables the actual implementation to throw a single exception. Simplifies the usage of lambda-expressions by not being forced to include exception handling into the expression itself.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceThrowableFunctionalInterfaces.Function<T,R,X extends Exception>ExtendedFunction<T, R>functional interface which allows theapplymethod to throw an exception of type X.static interfaceThrowableFunctionalInterfaces.Procedure<X extends Exception>Procedure functional interface which allows theinvokemethod to throw an exception of type X.static interfaceThrowableFunctionalInterfaces.Supplier<T,X extends Exception>ExtendedSupplier<T>functional interface which allows thegetmethod to throw an exception of type X.
-