Uses of Interface
org.apache.commons.io.function.IOTriConsumer
-
Packages that use IOTriConsumer Package Description org.apache.commons.io.function Provides IO-only related functional interfaces for lambda expressions and method references. -
-
Uses of IOTriConsumer in org.apache.commons.io.function
Fields in org.apache.commons.io.function declared as IOTriConsumer Modifier and Type Field Description (package private) static IOTriConsumer
Constants. IO_TRI_CONSUMER
No-op singleton.Methods in org.apache.commons.io.function that return IOTriConsumer Modifier and Type Method Description 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.static <T,U,V>
IOTriConsumer<T,U,V>IOTriConsumer. noop()
Returns the no-op singleton.Methods in org.apache.commons.io.function with parameters of type IOTriConsumer Modifier and Type Method Description static <T,U,V>
voidUncheck. 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.
-