Uses of Class
org.eclipse.collections.impl.map.mutable.AbstractMutableMap
-
Packages that use AbstractMutableMap Package Description org.eclipse.collections.impl.map.fixed This package contains implementations of theFixedSizeMap
interface.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMap
interface.org.eclipse.collections.impl.map.strategy.mutable This package contains mutable map implementations backed by hashtables that rely onHashingStrategy
s provided by the developer to compute the hashCode and equals for the objects stored in the map. -
-
Uses of AbstractMutableMap in org.eclipse.collections.impl.map.fixed
Subclasses of AbstractMutableMap in org.eclipse.collections.impl.map.fixed Modifier and Type Class Description (package private) class
AbstractMemoryEfficientMutableMap<K,V>
(package private) class
DoubletonMap<K,V>
(package private) class
EmptyMap<K,V>
(package private) class
SingletonMap<K,V>
(package private) class
TripletonMap<K,V>
-
Uses of AbstractMutableMap in org.eclipse.collections.impl.map.mutable
Subclasses of AbstractMutableMap in org.eclipse.collections.impl.map.mutable Modifier and Type Class Description class
ConcurrentHashMap<K,V>
class
ConcurrentHashMapUnsafe<K,V>
class
ConcurrentMutableHashMap<K,V>
Deprecated.since 2.0class
MapAdapter<K,V>
This class provides a MutableMap wrapper around a JDK Collections Map interface instance.class
UnifiedMap<K,V>
UnifiedMap stores key/value pairs in a single array, where alternate slots are keys and values. -
Uses of AbstractMutableMap in org.eclipse.collections.impl.map.strategy.mutable
Subclasses of AbstractMutableMap in org.eclipse.collections.impl.map.strategy.mutable Modifier and Type Class Description class
UnifiedMapWithHashingStrategy<K,V>
UnifiedMapWithHashingStrategy stores key/value pairs in a single array, where alternate slots are keys and values.
-