Modul speiger.src.collections
Schnittstelle ObjectObjectConsumer<T,V>
- Typparameter:
T- the keyType of elements maintained by this CollectionV- the keyType of elements maintained by this Collection
- Alle Superschnittstellen:
BiConsumer<T,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 ObjectObjectConsumer<T,V> andThen(ObjectObjectConsumer<T, V> after) Type Specific sequencing method to reduce boxing/unboxing.Von Schnittstelle geerbte Methoden java.util.function.BiConsumer
andThen
-
Methodendetails
-
accept
A Type Specific operation method to reduce boxing/unboxing Performs this operation on the given arguments.- Angegeben von:
acceptin SchnittstelleBiConsumer<T,V> - 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
-