Uses of Interface
org.apache.commons.lang3.Functions.FailableConsumer
Package
Description
Provides highly reusable static utility methods, chiefly concerned with adding value to the
java.lang
classes.-
Uses of Functions.FailableConsumer in org.apache.commons.lang3
Modifier and TypeMethodDescriptionstatic <O,
T extends Throwable>
voidFunctions.accept
(Functions.FailableConsumer<O, T> consumer, O object) Deprecated.Consumes a consumer and rethrows any exception as aRuntimeException
.static <I> Consumer<I>
Functions.asConsumer
(Functions.FailableConsumer<I, ?> consumer) Deprecated.Converts the givenFunctions.FailableConsumer
into a standardConsumer
.void
Streams.FailableStream.forEach
(Functions.FailableConsumer<O, ?> action) Deprecated.Performs an action for each element of this stream.static void
Functions.tryWithResources
(Functions.FailableRunnable<? extends Throwable> action, Functions.FailableConsumer<Throwable, ? extends Throwable> errorHandler, Functions.FailableRunnable<? extends Throwable>... resources) Deprecated.A simple try-with-resources implementation, that can be used, if your objects do not implement theAutoCloseable
interface.