Interface Obj2ShortBiConsumer<V>
- Type Parameters:
V- the type of the object parameter
- All Superinterfaces:
BiConsumer<V,Short>
- 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 short and an object as parameter.-
Method Summary
Modifier and TypeMethodDescriptiondefault voidDeprecated.voidacceptShort(V left, short right) Performs this operation on the given arguments.default BiConsumer<V,Short> andThen(BiConsumer<? super V, ? super Short> after) Deprecated.default Obj2ShortBiConsumer<V>andThenShort(Obj2ShortBiConsumer<V> after)
-
Method Details
-
acceptShort
Performs this operation on the given arguments.- Parameters:
left- the first input argumentright- the second input argument
-
accept
Deprecated.- Specified by:
acceptin interfaceBiConsumer<V,Short>
-
andThenShort
- Parameters:
after- the operation to perform after this operation- Returns:
- a composed
Obj2ShortBiConsumerthat performs in sequence this operation followed by theafteroperation
-
andThen
Deprecated.- Specified by:
andThenin interfaceBiConsumer<V,Short>
-