T
- Consumed type 1.E
- Thrown exception.@FunctionalInterface public interface FailableConsumer<T,E extends Throwable>
Consumer
that declares a Throwable
.Modifier and Type | Field and Description |
---|---|
static FailableConsumer |
NOP
NOP singleton
|
Modifier and Type | Method and Description |
---|---|
void |
accept(T object)
Accepts the consumer.
|
default FailableConsumer<T,E> |
andThen(FailableConsumer<? super T,E> after)
Returns a composed
Consumer like Consumer.andThen(Consumer) . |
static <T,E extends Throwable> |
nop()
Returns The NOP singleton.
|
static final FailableConsumer NOP
static <T,E extends Throwable> FailableConsumer<T,E> nop()
T
- Consumed type 1.E
- Thrown exception.default FailableConsumer<T,E> andThen(FailableConsumer<? super T,E> after)
Consumer
like Consumer.andThen(Consumer)
.after
- the operation to perform after this operationConsumer
like Consumer.andThen(Consumer)
.NullPointerException
- when after
is nullCopyright © 2001–2021 The Apache Software Foundation. All rights reserved.