Interface IGenericMapAdderTrait<KEYTYPE,VALUETYPE extends IAddableByTrait,IMPLTYPE extends IGenericMapAdderTrait<KEYTYPE,VALUETYPE,IMPLTYPE>>

Type Parameters:
KEYTYPE - Map key type.
VALUETYPE - The element type to be added. Must implement IAddableByTrait as a hack, so that the APIs add(Object) and add(VALUETYPE) can co-exist. Otherwise there would be a problem with type erasure.
IMPLTYPE - The implementation type for chaining API
All Superinterfaces:
IGenericImplTrait<IMPLTYPE>, IHasTypeConverterTo<VALUETYPE>

public interface IGenericMapAdderTrait<KEYTYPE,VALUETYPE extends IAddableByTrait,IMPLTYPE extends IGenericMapAdderTrait<KEYTYPE,VALUETYPE,IMPLTYPE>> extends IHasTypeConverterTo<VALUETYPE>, IGenericImplTrait<IMPLTYPE>
Add arbitrary objects to this, where this is a Map based structure like HashMap or TreeMap.
Since:
v12.0.0
Author:
Philip Helger