Uses of Class
org.apache.commons.io.IOExceptionList
-
Packages that use IOExceptionList Package Description org.apache.commons.io Provides classes for working with streams, readers, writers and files.org.apache.commons.io.function Provides IO-only related functional interfaces for lambda expressions and method references. -
-
Uses of IOExceptionList in org.apache.commons.io
Methods in org.apache.commons.io that throw IOExceptionList Modifier and Type Method Description static void
IOExceptionList. checkEmpty(java.util.List<? extends java.lang.Throwable> causeList, java.lang.Object message)
Throws this exception if the list is not null or empty.static void
IOUtils. close(java.io.Closeable... closeables)
Closes the givenCloseable
s as null-safe operations. -
Uses of IOExceptionList in org.apache.commons.io.function
Methods in org.apache.commons.io.function that throw IOExceptionList Modifier and Type Method Description static <T> void
IOConsumer. forAll(IOConsumer<T> action, java.lang.Iterable<T> iterable)
Performs an action for each element of the collection gathering any exceptions.static <T> void
IOConsumer. forAll(IOConsumer<T> action, java.util.stream.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, java.util.function.BiFunction<java.lang.Integer,java.io.IOException,java.io.IOException> exSupplier)
Performs an action for each element gathering any exceptions.
-