Uses of Interface
org.apache.commons.io.function.IOTriConsumer
Package
Description
Provides IO-only related functional interfaces for lambda expressions and method references.
-
Uses of IOTriConsumer in org.apache.commons.io.function
Modifier and TypeMethodDescriptiondefault IOTriConsumer<T,
U, V> IOTriConsumer.andThen
(IOTriConsumer<? super T, ? super U, ? super V> after) Creates a composedIOTriConsumer
that performs, in sequence, this operation followed by theafter
operation.static <T,
U, V> IOTriConsumer<T, U, V> IOTriConsumer.noop()
Returns the no-op singleton.Modifier and TypeMethodDescriptionstatic <T,
U, V> void Uncheck.accept
(IOTriConsumer<T, U, V> consumer, T t, U u, V v) Accepts an IO consumer with the given arguments.default IOTriConsumer<T,
U, V> IOTriConsumer.andThen
(IOTriConsumer<? super T, ? super U, ? super V> after) Creates a composedIOTriConsumer
that performs, in sequence, this operation followed by theafter
operation.