Modul speiger.src.collections
Schnittstelle DoubleObjectConsumer<V>
- Typparameter:
V- the keyType of elements maintained by this Collection
- Alle Superschnittstellen:
BiConsumer<Double,V>
A Type Specific BiConsumer class to reduce boxing/unboxing and that fills the gaps that java has.
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungvoidA 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 DoubleObjectConsumer<V>andThen(BiConsumer<? super Double, ? super V> after) Veraltet.Please use the corresponding type-specific function instead.default DoubleObjectConsumer<V>andThen(DoubleObjectConsumer<V> after) Type Specific sequencing method to reduce boxing/unboxing.
-
Methodendetails
-
accept
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<Double,V>
-
andThen
Veraltet.Please use the corresponding type-specific function instead.This default implementation delegates to the corresponding type-specific function.
- Angegeben von:
andThenin SchnittstelleBiConsumer<Double,V>
-