Interface Short2ObjBiConsumer<V>
- Type Parameters:
V- the type of the object
- All Superinterfaces:
BiConsumer<Short,V>
- 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 that takes a short and an object.
-
Method Summary
Modifier and TypeMethodDescriptiondefault voidDeprecated.voidacceptShort(short left, V right) Performs this operation on the given arguments.default BiConsumer<Short,V> andThen(BiConsumer<? super Short, ? super V> after) Deprecated.default Short2ObjBiConsumer<V>andThenShort(Short2ObjBiConsumer<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<Short,V>
-
andThenShort
- Parameters:
after- the operation to perform after this operation- Returns:
- a composed
Short2ObjBiConsumerthat performs in sequence this operation followed by theafteroperation
-
andThen
Deprecated.- Specified by:
andThenin interfaceBiConsumer<Short,V>
-