T - the keyType of elements maintained by this Collectionpublic interface ObjectByteConsumer<T>
extends java.util.function.BiConsumer<T,java.lang.Byte>
| Modifier and Type | Method and Description |
|---|---|
void |
accept(T k,
byte v)
A Type Specific operation method to reduce boxing/unboxing
Performs this operation on the given arguments.
|
default void |
accept(T k,
java.lang.Byte v)
Deprecated.
Please use the corresponding type-specific function instead.
|
default ObjectByteConsumer<T> |
andThen(java.util.function.BiConsumer<? super T,? super java.lang.Byte> after)
Deprecated.
Please use the corresponding type-specific function instead.
|
default ObjectByteConsumer<T> |
andThen(ObjectByteConsumer<T> after)
Type Specific sequencing method to reduce boxing/unboxing.
|
void accept(T k, byte v)
k - the first input argumentv - the second input argumentdefault ObjectByteConsumer<T> andThen(ObjectByteConsumer<T> after)
after - a operation that should be performed afterwardsjava.lang.NullPointerException - if after is null@Deprecated default void accept(T k, java.lang.Byte v)
This default implementation delegates to the corresponding type-specific function.
accept in interface java.util.function.BiConsumer<T,java.lang.Byte>@Deprecated default ObjectByteConsumer<T> andThen(java.util.function.BiConsumer<? super T,? super java.lang.Byte> after)
This default implementation delegates to the corresponding type-specific function.
andThen in interface java.util.function.BiConsumer<T,java.lang.Byte>