Uses of Class
org.apache.commons.io.IOExceptionList
Package
Description
Provides classes for working with streams, readers, writers and files.
Provides IO-only related functional interfaces for lambda expressions and method references.
-
Uses of IOExceptionList in org.apache.commons.io
-
Uses of IOExceptionList in org.apache.commons.io.function
Modifier and TypeMethodDescriptionstatic <T> void
IOConsumer.forAll
(IOConsumer<T> action, Iterable<T> iterable) Performs an action for each element of the collection gathering any exceptions.static <T> void
IOConsumer.forAll
(IOConsumer<T> action, Stream<T> stream) Performs an action for each element of the collection gathering any exceptions.static <T> void
IOConsumer.forAll
(IOConsumer<T> action, T... array) Performs an action for each element of the array, gathering any exceptions.default void
IOStream.forAll
(IOConsumer<T> action) Performs an action for each element gathering any exceptions.default void
IOStream.forAll
(IOConsumer<T> action, BiFunction<Integer, IOException, IOException> exSupplier) Performs an action for each element gathering any exceptions.