Uses of Interface
org.apache.commons.io.function.IOIntConsumer
-
Packages that use IOIntConsumer Package Description org.apache.commons.io.function Provides IO-only related functional interfaces for lambda expressions and method references.org.apache.commons.io.input Provides implementations of input classes, such asInputStream
andReader
. -
-
Uses of IOIntConsumer in org.apache.commons.io.function
Fields in org.apache.commons.io.function declared as IOIntConsumer Modifier and Type Field Description static IOIntConsumer
IOIntConsumer. NOOP
The constant no-op consumer.Methods in org.apache.commons.io.function that return IOIntConsumer Modifier and Type Method Description default IOIntConsumer
IOIntConsumer. andThen(IOIntConsumer after)
Returns a composedIOIntConsumer
that performs, in sequence, this operation followed by theafter
operation.Methods in org.apache.commons.io.function with parameters of type IOIntConsumer Modifier and Type Method Description static void
Uncheck. accept(IOIntConsumer consumer, int i)
Accepts an IO consumer with the given argument.default IOIntConsumer
IOIntConsumer. andThen(IOIntConsumer after)
Returns a composedIOIntConsumer
that performs, in sequence, this operation followed by theafter
operation. -
Uses of IOIntConsumer in org.apache.commons.io.input
Methods in org.apache.commons.io.input that return IOIntConsumer Modifier and Type Method Description IOIntConsumer
ProxyInputStream.AbstractBuilder. getAfterRead()
Gets theProxyInputStream.afterRead(int)
consumer.Methods in org.apache.commons.io.input with parameters of type IOIntConsumer Modifier and Type Method Description B
ProxyInputStream.AbstractBuilder. setAfterRead(IOIntConsumer afterRead)
Sets theProxyInputStream.afterRead(int)
behavior, null resets to a NOOP.
-