E - The kind of thrown exception or error.@FunctionalInterface public interface FailableByteConsumer<E extends Throwable>
ByteConsumer that declares a Throwable.| Modifier and Type | Field and Description |
|---|---|
static FailableByteConsumer |
NOP
NOP singleton
|
| Modifier and Type | Method and Description |
|---|---|
void |
accept(byte value)
Accepts the given arguments.
|
default FailableByteConsumer<E> |
andThen(FailableByteConsumer<E> after)
Returns a composed
FailableByteConsumer like IntConsumer.andThen(IntConsumer). |
static <E extends Throwable> |
nop()
Gets the NOP singleton.
|
static final FailableByteConsumer NOP
static <E extends Throwable> FailableByteConsumer<E> nop()
E - The kind of thrown exception or error.default FailableByteConsumer<E> andThen(FailableByteConsumer<E> after)
FailableByteConsumer like IntConsumer.andThen(IntConsumer).after - the operation to perform after this one.FailableByteConsumer like IntConsumer.andThen(IntConsumer).NullPointerException - if after is nullCopyright © 2001–2026 The Apache Software Foundation. All rights reserved.