Package | Description |
---|---|
org.apache.commons.io |
This package defines utility classes for working with streams, readers,
writers and files.
|
org.apache.commons.io.function |
IO-only related functional interfaces provide target types for lambda expressions and method references.
|
Modifier and Type | Method and Description |
---|---|
static void |
IOUtils.close(Closeable closeable,
IOConsumer<IOException> consumer)
Closes the given
Closeable as a null-safe operation. |
Modifier and Type | Method and Description |
---|---|
default IOConsumer<T> |
IOFunction.andThen(Consumer<? super R> after)
Returns a composed
IOFunction that first applies this function to
its input, and then applies the after consumer to the result. |
default IOConsumer<T> |
IOFunction.andThen(IOConsumer<? super R> after)
Returns a composed
IOFunction that first applies this function to
its input, and then applies the after consumer to the result. |
default IOConsumer<T> |
IOConsumer.andThen(IOConsumer<? super T> after)
Returns a composed
IoConsumer that performs, in sequence, this operation followed by the after
operation. |
Modifier and Type | Method and Description |
---|---|
default IOConsumer<T> |
IOFunction.andThen(IOConsumer<? super R> after)
Returns a composed
IOFunction that first applies this function to
its input, and then applies the after consumer to the result. |
default IOConsumer<T> |
IOConsumer.andThen(IOConsumer<? super T> after)
Returns a composed
IoConsumer that performs, in sequence, this operation followed by the after
operation. |
Copyright © 2002–2020 The Apache Software Foundation. All rights reserved.