Uses of Interface
org.apache.commons.io.function.IOTriFunction
Packages that use IOTriFunction
Package
Description
Provides classes for working with streams, readers, writers and files.
Provides IO-only related functional interfaces for lambda expressions and method references.
-
Uses of IOTriFunction in org.apache.commons.io
Methods in org.apache.commons.io with parameters of type IOTriFunctionModifier and TypeMethodDescription(package private) static int
IOUtils.read
(IOTriFunction<byte[], Integer, Integer, Integer> input, byte[] buffer, int offset, int length) Reads bytes from an input.(package private) static byte[]
IOUtils.toByteArray
(IOTriFunction<byte[], Integer, Integer, Integer> input, int size) Gets the contents of an input as abyte[]
. -
Uses of IOTriFunction in org.apache.commons.io.function
Methods in org.apache.commons.io.function that return IOTriFunctionModifier and TypeMethodDescriptiondefault <W> IOTriFunction
<T, U, V, W> IOTriFunction.andThen
(IOFunction<? super R, ? extends W> 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 IOTriFunctionModifier and TypeMethodDescriptionstatic <T,
U, V, R>
RUncheck.apply
(IOTriFunction<T, U, V, R> function, T t, U u, V v) Applies an IO tri-function with the given arguments.