Uses of Interface
org.apache.commons.io.function.IOBiConsumer
Packages that use IOBiConsumer
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 IOBiConsumer in org.apache.commons.io.function
Fields in org.apache.commons.io.function declared as IOBiConsumerModifier and TypeFieldDescription(package private) static final IOBiConsumerConstants.IO_BI_CONSUMERNo-op singleton.Methods in org.apache.commons.io.function that return IOBiConsumerModifier and TypeMethodDescriptiondefault IOBiConsumer<T, U> IOBiConsumer.andThen(IOBiConsumer<? super T, ? super U> after) Creates a composedIOBiConsumerthat performs, in sequence, this operation followed by theafteroperation.static <T,U> IOBiConsumer <T, U> IOBiConsumer.noop()Returns the no-op singleton.Methods in org.apache.commons.io.function with parameters of type IOBiConsumerModifier and TypeMethodDescription(package private) static <T,U> void Erase.accept(IOBiConsumer<T, U> consumer, T t, U u) Delegates to the givenIOBiConsumerbut erases itsIOExceptionfor the compiler, while still throwing the exception at runtime.static <T,U> void Uncheck.accept(IOBiConsumer<T, U> consumer, T t, U u) Accepts an IO consumer with the given arguments.default IOBiConsumer<T, U> IOBiConsumer.andThen(IOBiConsumer<? super T, ? super U> after) Creates a composedIOBiConsumerthat performs, in sequence, this operation followed by theafteroperation.default <R> RIOStream.collect(IOSupplier<R> supplier, IOBiConsumer<R, ? super T> accumulator, IOBiConsumer<R, R> combiner) -
Uses of IOBiConsumer in org.apache.commons.io.input
Fields in org.apache.commons.io.input declared as IOBiConsumerModifier and TypeFieldDescriptionprivate IOBiConsumer<Long, Long> BoundedInputStream.AbstractBuilder.onMaxCountprivate final IOBiConsumer<Long, Long> BoundedInputStream.onMaxCountMethods in org.apache.commons.io.input that return IOBiConsumerModifier and TypeMethodDescription(package private) IOBiConsumer<Long, Long> BoundedInputStream.AbstractBuilder.getOnMaxCount()Methods in org.apache.commons.io.input with parameters of type IOBiConsumerModifier and TypeMethodDescriptionBoundedInputStream.AbstractBuilder.setOnMaxCount(IOBiConsumer<Long, Long> onMaxCount) Sets the defaultBoundedInputStream.onMaxLength(long, long)behavior,nullresets to a NOOP.