Uses of Interface
org.apache.commons.io.function.IOConsumer
Packages that use IOConsumer
Package
Description
This package defines utility classes for working with streams, readers,
writers and files.
This package defines IO-only related functional interfaces for lambda expressions and method references.
-
Uses of IOConsumer in org.apache.commons.io
Methods in org.apache.commons.io with parameters of type IOConsumerModifier and TypeMethodDescriptionstatic voidIOUtils.close(Closeable closeable, IOConsumer<IOException> consumer) Closes the givenCloseableas a null-safe operation. -
Uses of IOConsumer in org.apache.commons.io.function
Methods in org.apache.commons.io.function that return IOConsumerModifier and TypeMethodDescriptiondefault IOConsumer<T>IOConsumer.andThen(IOConsumer<? super T> after) Returns a composedIoConsumerthat performs, in sequence, this operation followed by theafteroperation.default IOConsumer<T>Returns a composedIOFunctionthat first applies this function to its input, and then applies theafterconsumer to the result.default IOConsumer<T>IOFunction.andThen(IOConsumer<? super R> after) Returns a composedIOFunctionthat first applies this function to its input, and then applies theafterconsumer to the result.Methods in org.apache.commons.io.function with parameters of type IOConsumerModifier and TypeMethodDescriptiondefault IOConsumer<T>IOConsumer.andThen(IOConsumer<? super T> after) Returns a composedIoConsumerthat performs, in sequence, this operation followed by theafteroperation.default IOConsumer<T>IOFunction.andThen(IOConsumer<? super R> after) Returns a composedIOFunctionthat first applies this function to its input, and then applies theafterconsumer to the result.