Klasse LinkedEnum2ObjectMap<T extends Enum<T>,V>

Typparameter:
T - the keyType of elements maintained by this Collection
V - the keyType of elements maintained by this Collection
Alle implementierten Schnittstellen:
Function<T,V>, Map<T,V>, UnaryOperator<T,V>, Object2ObjectMap<T,V>, Object2ObjectOrderedMap<T,V>

public class LinkedEnum2ObjectMap<T extends Enum<T>,V> extends Enum2ObjectMap<T,V> implements Object2ObjectOrderedMap<T,V>
A Type Specific LinkedEnumMap implementation that allows for Primitive Values and faster iteration. Unlike javas implementation this one does not jump around between a single long or long array implementation based around the enum size This will cause a bit more memory usage but allows for a simpler implementation.