Package | Description |
---|---|
org.apache.commons.io.function |
Provides IO-only related functional interfaces for lambda expressions and method references.
|
Modifier and Type | Field and Description |
---|---|
(package private) static IOTriConsumer |
Constants.IO_TRI_CONSUMER
No-op singleton.
|
Modifier and Type | Method and Description |
---|---|
default IOTriConsumer<T,U,V> |
IOTriConsumer.andThen(IOTriConsumer<? super T,? super U,? super V> after)
Creates a composed
IOTriConsumer that performs, in sequence, this operation followed by the after
operation. |
static <T,U,V> IOTriConsumer<T,U,V> |
IOTriConsumer.noop()
Returns the no-op singleton.
|
Modifier and Type | Method and Description |
---|---|
static <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 composed
IOTriConsumer that performs, in sequence, this operation followed by the after
operation. |