Uses of Interface
org.apache.commons.io.function.IOQuadFunction
-
Packages that use IOQuadFunction Package Description org.apache.commons.io.function Provides IO-only related functional interfaces for lambda expressions and method references. -
-
Uses of IOQuadFunction in org.apache.commons.io.function
Methods in org.apache.commons.io.function that return IOQuadFunction Modifier and Type Method Description default <X> IOQuadFunction<T,U,V,W,X>
IOQuadFunction. andThen(IOFunction<? super R,? extends X> 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 IOQuadFunction Modifier and Type Method Description static <T,U,V,W,R>
RUncheck. apply(IOQuadFunction<T,U,V,W,R> function, T t, U u, V v, W w)
Applies an IO quad-function with the given arguments.
-