Interface LongObjectBiConsumer<V>

All Superinterfaces:
BiConsumer<Long,V>
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 LongObjectBiConsumer<V> extends BiConsumer<Long,V>
A type-specific BiConsumer.
Since:
8.5.18
See Also:
  • Method Summary

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