@FunctionalInterface public interface ObjByteConsumer<T>
byte-valued argument, and returns no result. This is the
(reference, long) specialization of BiConsumer for byte. Unlike most other functional
interfaces, ObjByteConsumer is expected to operate via side effects.
This is a functional interface whose functional method is
accept(Object, byte).
BiConsumer| Modifier and Type | Method and Description |
|---|---|
void |
accept(T t,
byte value)
Performs this operation on the given arguments.
|
void accept(T t, byte value)
t - the first input argumentvalue - the second input argumentCopyright © 2024. All rights reserved.