Uses of Interface
org.apache.commons.lang3.Functions.FailableFunction
-
Packages that use Functions.FailableFunction Package Description org.apache.commons.lang3 Provides highly reusable static utility methods, chiefly concerned with adding value to thejava.lang
classes. -
-
Uses of Functions.FailableFunction in org.apache.commons.lang3
Methods in org.apache.commons.lang3 with parameters of type Functions.FailableFunction Modifier and Type Method Description static <I,O,T extends java.lang.Throwable>
OFunctions. apply(Functions.FailableFunction<I,O,T> function, I input)
Deprecated.Applies a function and rethrows any exception as aRuntimeException
.static <I,O>
java.util.function.Function<I,O>Functions. asFunction(Functions.FailableFunction<I,O,?> function)
Deprecated.Converts the givenFunctions.FailableFunction
into a standardFunction
.<R> Streams.FailableStream<R>
Streams.FailableStream. map(Functions.FailableFunction<O,R,?> mapper)
Deprecated.Returns a stream consisting of the results of applying the given function to the elements of this stream.
-