Uses of Interface
org.apache.commons.io.function.IOBiFunction
-
Packages that use IOBiFunction Package Description org.apache.commons.io.file Provides extensions in the realm ofjava.nio.file.org.apache.commons.io.function 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 IOBiFunction Modifier and Type Field Description private IOBiFunction<java.nio.file.Path,java.io.IOException,java.nio.file.FileVisitResult>SimplePathVisitor.AbstractBuilder. visitFileFailedFunctionprivate IOBiFunction<java.nio.file.Path,java.io.IOException,java.nio.file.FileVisitResult>SimplePathVisitor. visitFileFailedFunctionMethods in org.apache.commons.io.file that return IOBiFunction Modifier and Type Method Description (package private) IOBiFunction<java.nio.file.Path,java.io.IOException,java.nio.file.FileVisitResult>SimplePathVisitor.AbstractBuilder. getVisitFileFailedFunction()Methods in org.apache.commons.io.file with parameters of type IOBiFunction Modifier and Type Method Description BSimplePathVisitor.AbstractBuilder. setVisitFileFailedFunction(IOBiFunction<java.nio.file.Path,java.io.IOException,java.nio.file.FileVisitResult> visitFileFailedFunction)Sets the function to call onSimplePathVisitor.visitFileFailed(Path, IOException).Constructors in org.apache.commons.io.file with parameters of type IOBiFunction Constructor Description AccumulatorPathVisitor(Counters.PathCounters pathCounter, PathFilter fileFilter, PathFilter dirFilter, IOBiFunction<java.nio.file.Path,java.io.IOException,java.nio.file.FileVisitResult> visitFileFailed)Deprecated.CountingPathVisitor(Counters.PathCounters pathCounters, PathFilter fileFilter, PathFilter directoryFilter, IOBiFunction<java.nio.file.Path,java.io.IOException,java.nio.file.FileVisitResult> visitFileFailed)Deprecated.NoopPathVisitor(IOBiFunction<java.nio.file.Path,java.io.IOException,java.nio.file.FileVisitResult> visitFileFailed)Constructs a new instance.SimplePathVisitor(IOBiFunction<java.nio.file.Path,java.io.IOException,java.nio.file.FileVisitResult> visitFileFailedFunction)Constructs a new instance. -
Uses of IOBiFunction in org.apache.commons.io.function
Subinterfaces of IOBiFunction in org.apache.commons.io.function Modifier and Type Interface Description interfaceIOBinaryOperator<T>LikeBinaryOperatorbut throwsIOException.Fields in org.apache.commons.io.function declared as IOBiFunction Modifier and Type Field Description (package private) static IOBiFunctionConstants. IO_BI_FUNCTIONNo-op singleton.Methods in org.apache.commons.io.function that return IOBiFunction Modifier and Type Method Description default <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 theafterfunction to the result.Methods in org.apache.commons.io.function with parameters of type IOBiFunction Modifier and Type Method Description (package private) static <T,U,R>
RErase. apply(IOBiFunction<? super T,? super U,? extends R> mapper, T t, U u)Delegates to the givenIOBiFunctionbut erases itsIOExceptionfor the compiler, while still throwing the exception at runtime.static <T,U,R>
RUncheck. apply(IOBiFunction<T,U,R> function, T t, U u)Applies an IO function with the given arguments.default <U> UIOStream. reduce(U identity, IOBiFunction<U,? super T,U> accumulator, IOBinaryOperator<U> combiner)LikeStream.reduce(Object, BiFunction, java.util.function.BinaryOperator).
-