Modul speiger.src.collections
Schnittstelle ShortIntConsumer
- Alle Superschnittstellen:
BiConsumer<Short,Integer>
A Type Specific BiConsumer class to reduce boxing/unboxing and that fills the gaps that java has.
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungvoidaccept(short k, int v) A Type Specific operation method to reduce boxing/unboxing Performs this operation on the given arguments.default voidVeraltet.Please use the corresponding type-specific function instead.default ShortIntConsumerandThen(BiConsumer<? super Short, ? super Integer> after) Veraltet.Please use the corresponding type-specific function instead.default ShortIntConsumerandThen(ShortIntConsumer after) Type Specific sequencing method to reduce boxing/unboxing.
-
Methodendetails
-
accept
void accept(short k, int v) A Type Specific operation method to reduce boxing/unboxing Performs this operation on the given arguments.- Parameter:
k- the first input argumentv- the second input argument
-
andThen
Type Specific sequencing method to reduce boxing/unboxing.- Parameter:
after- a operation that should be performed afterwards- Gibt zurück:
- a sequenced biconsumer that does 2 operations
- Löst aus:
NullPointerException- if after is null
-
accept
Veraltet.Please use the corresponding type-specific function instead.This default implementation delegates to the corresponding type-specific function.
- Angegeben von:
acceptin SchnittstelleBiConsumer<Short,Integer>
-
andThen
Veraltet.Please use the corresponding type-specific function instead.This default implementation delegates to the corresponding type-specific function.
- Angegeben von:
andThenin SchnittstelleBiConsumer<Short,Integer>
-