Uses of Interface
org.apache.commons.io.function.IOSupplier
-
Packages that use IOSupplier Package Description org.apache.commons.io.function This package defines IO-only related functional interfaces for lambda expressions and method references. -
-
Uses of IOSupplier in org.apache.commons.io.function
Methods in org.apache.commons.io.function that return IOSupplier Modifier and Type Method Description default IOSupplier<R>IOFunction. compose(java.util.function.Supplier<? extends T> before)Returns a composedIOFunctionthat first applies thebeforefunction to its input, and then applies this function to the result.default IOSupplier<R>IOFunction. compose(IOSupplier<? extends T> before)Returns a composedIOFunctionthat first applies thebeforefunction to its input, and then applies this function to the result.Methods in org.apache.commons.io.function with parameters of type IOSupplier Modifier and Type Method Description default IOSupplier<R>IOFunction. compose(IOSupplier<? extends T> before)Returns a composedIOFunctionthat first applies thebeforefunction to its input, and then applies this function to the result.
-