Uses of Interface
org.apache.commons.io.function.IOBiConsumer
-
Packages that use IOBiConsumer Package Description org.apache.commons.io.function Provides IO-only related functional interfaces for lambda expressions and method references. -
-
Uses of IOBiConsumer in org.apache.commons.io.function
Fields in org.apache.commons.io.function declared as IOBiConsumer Modifier and Type Field Description (package private) static IOBiConsumer
Constants. IO_BI_CONSUMER
No-op singleton.Methods in org.apache.commons.io.function that return IOBiConsumer Modifier and Type Method Description default IOBiConsumer<T,U>
IOBiConsumer. andThen(IOBiConsumer<? super T,? super U> after)
Creates a composedIOBiConsumer
that performs, in sequence, this operation followed by theafter
operation.static <T,U>
IOBiConsumer<T,U>IOBiConsumer. noop()
Returns the no-op singleton.Methods in org.apache.commons.io.function with parameters of type IOBiConsumer Modifier and Type Method Description (package private) static <T,U>
voidErase. accept(IOBiConsumer<T,U> consumer, T t, U u)
Delegates to the givenIOBiConsumer
but erases itsIOException
for the compiler, while still throwing the exception at runtime.static <T,U>
voidUncheck. 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 composedIOBiConsumer
that performs, in sequence, this operation followed by theafter
operation.default <R> R
IOStream. collect(IOSupplier<R> supplier, IOBiConsumer<R,? super T> accumulator, IOBiConsumer<R,R> combiner)
LikeStream.collect(java.util.function.Supplier, java.util.function.BiConsumer, java.util.function.BiConsumer)
.
-