Uses of Interface
org.apache.commons.io.function.IOUnaryOperator
Packages that use IOUnaryOperator
Package
Description
Provides IO-only related functional interfaces for lambda expressions and method references.
Provides implementations of input classes, such as
InputStream and Reader.-
Uses of IOUnaryOperator in org.apache.commons.io.function
Methods in org.apache.commons.io.function that return IOUnaryOperatorModifier and TypeMethodDescriptionstatic <T> IOUnaryOperator<T> IOUnaryOperator.identity()Creates a unary operator that always returns its input argument.Methods in org.apache.commons.io.function with parameters of type IOUnaryOperatorModifier and TypeMethodDescriptionstatic <T> IOStream<T> IOStream.iterate(T seed, IOUnaryOperator<T> f) LikeStream.iterate(Object, UnaryOperator)but for IO. -
Uses of IOUnaryOperator in org.apache.commons.io.input
Methods in org.apache.commons.io.input with parameters of type IOUnaryOperatorModifier and TypeMethodDescriptionCloseShieldInputStream.Builder.setOnClose(IOUnaryOperator<InputStream> onClose) Sets theonClosefunction.