Interface Obj2LongBiConsumer<V>
- Type Parameters:
V- the type of the generic argument
- All Superinterfaces:
BiConsumer<V,Long>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A functional interface for a
BiConsumer with a primitive long and a generic second argument.-
Method Summary
Modifier and TypeMethodDescriptiondefault voidDeprecated.voidacceptLong(V left, long right) Performs this operation on the given arguments.default BiConsumer<V,Long> andThen(BiConsumer<? super V, ? super Long> after) Deprecated.default Obj2LongBiConsumer<V>andThenLong(Obj2LongBiConsumer<V> after)
-
Method Details
-
acceptLong
Performs this operation on the given arguments.- Parameters:
left- the first input argumentright- the second input argument
-
accept
Deprecated.- Specified by:
acceptin interfaceBiConsumer<V,Long>
-
andThenLong
- Parameters:
after- the operation to perform after this operation- Returns:
- a composed
Obj2LongBiConsumerthat performs in sequence this operation followed by theafteroperation
-
andThen
Deprecated.- Specified by:
andThenin interfaceBiConsumer<V,Long>
-