Uses of Interface
org.apache.commons.io.function.IOBiFunction
Packages that use IOBiFunction
Package
Description
Provides extensions in the realm of
java.nio.file
.Provides IO-only related functional interfaces for lambda expressions and method references.
-
Uses of IOBiFunction in org.apache.commons.io.file
Fields in org.apache.commons.io.file declared as IOBiFunctionModifier and TypeFieldDescriptionprivate final IOBiFunction
<Path, IOException, FileVisitResult> SimplePathVisitor.visitFileFailedFunction
Constructors in org.apache.commons.io.file with parameters of type IOBiFunctionModifierConstructorDescriptionAccumulatorPathVisitor
(Counters.PathCounters pathCounter, PathFilter fileFilter, PathFilter dirFilter, IOBiFunction<Path, IOException, FileVisitResult> visitFileFailed) Constructs a new instance.CountingPathVisitor
(Counters.PathCounters pathCounter, PathFilter fileFilter, PathFilter dirFilter, IOBiFunction<Path, IOException, FileVisitResult> visitFileFailed) Constructs a new instance.NoopPathVisitor
(IOBiFunction<Path, IOException, FileVisitResult> visitFileFailed) Constructs a new instance.protected
SimplePathVisitor
(IOBiFunction<Path, IOException, FileVisitResult> visitFileFailed) Constructs a new instance. -
Uses of IOBiFunction in org.apache.commons.io.function
Subinterfaces of IOBiFunction in org.apache.commons.io.functionFields in org.apache.commons.io.function declared as IOBiFunctionModifier and TypeFieldDescription(package private) static final IOBiFunction
Constants.IO_BI_FUNCTION
No-op singleton.Methods in org.apache.commons.io.function that return IOBiFunctionModifier and TypeMethodDescriptiondefault <V> IOBiFunction
<T, U, V> IOBiFunction.andThen
(IOFunction<? super R, ? extends V> after) Creates a composed function that first applies this function to its input, and then applies theafter
function to the result.Methods in org.apache.commons.io.function with parameters of type IOBiFunctionModifier and TypeMethodDescription(package private) static <T,
U, R> R Erase.apply
(IOBiFunction<? super T, ? super U, ? extends R> mapper, T t, U u) Delegates to the givenIOBiFunction
but erases itsIOException
for the compiler, while still throwing the exception at runtime.static <T,
U, R> R Uncheck.apply
(IOBiFunction<T, U, R> function, T t, U u) Applies an IO function with the given arguments.default <U> U
IOStream.reduce
(U identity, IOBiFunction<U, ? super T, U> accumulator, IOBinaryOperator<U> combiner)