Modul speiger.src.collections
Schnittstelle ObjectCharConsumer<T>
- Typparameter:
T- the keyType of elements maintained by this Collection
- Alle Superschnittstellen:
BiConsumer<T,Character>
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 ObjectCharConsumer<T>andThen(BiConsumer<? super T, ? super Character> after) Veraltet.Please use the corresponding type-specific function instead.default ObjectCharConsumer<T>andThen(ObjectCharConsumer<T> 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<T,Character>
-
andThen
Veraltet.Please use the corresponding type-specific function instead.This default implementation delegates to the corresponding type-specific function.
- Angegeben von:
andThenin SchnittstelleBiConsumer<T,Character>
-