Interface ByteLongBiConsumer

All Superinterfaces:
BiConsumer<Byte,Long>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ByteLongBiConsumer extends BiConsumer<Byte,Long>
A type-specific BiConsumer.
Since:
8.5.18
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(byte k, long v)
    Performs this operation on the given entry.
    default void
    accept(Byte key, Long value)
    Deprecated.
    Please use the corresponding type-specific method instead.
     
    andThen(BiConsumer<? super Byte, ? super Long> after)
    Deprecated.
    Please use the corresponding type-specific method instead.