Uses of Class
org.eclipse.collections.impl.map.AbstractMapIterable
-
Packages that use AbstractMapIterable Package Description org.eclipse.collections.impl.map.fixed This package contains implementations of theFixedSizeMap
interface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMap
interface.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.map.strategy.immutable This package contains immutable 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.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 AbstractMapIterable in org.eclipse.collections.impl.map.fixed
Subclasses of AbstractMapIterable 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 AbstractMapIterable in org.eclipse.collections.impl.map.immutable
Subclasses of AbstractMapIterable in org.eclipse.collections.impl.map.immutable Modifier and Type Class Description class
AbstractImmutableMap<K,V>
(package private) class
ImmutableDoubletonMap<K,V>
(package private) class
ImmutableEmptyMap<K,V>
This is a zero elementImmutableMap
which is created by calling the Maps.immutable.empty() method.(package private) class
ImmutableQuadrupletonMap<K,V>
(package private) class
ImmutableSingletonMap<K,V>
(package private) class
ImmutableTripletonMap<K,V>
class
ImmutableUnifiedMap<K,V>
-
Uses of AbstractMapIterable in org.eclipse.collections.impl.map.mutable
Subclasses of AbstractMapIterable in org.eclipse.collections.impl.map.mutable Modifier and Type Class Description class
AbstractMutableMap<K,V>
class
AbstractMutableMapIterable<K,V>
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 AbstractMapIterable in org.eclipse.collections.impl.map.ordered.mutable
Subclasses of AbstractMapIterable in org.eclipse.collections.impl.map.ordered.mutable Modifier and Type Class Description class
OrderedMapAdapter<K,V>
-
Uses of AbstractMapIterable in org.eclipse.collections.impl.map.sorted.immutable
Subclasses of AbstractMapIterable in org.eclipse.collections.impl.map.sorted.immutable Modifier and Type Class Description class
AbstractImmutableSortedMap<K,V>
(package private) class
ImmutableEmptySortedMap<K,V>
This is a zero elementImmutableSortedMap
which is created by calling SortedMaps.immutable.empty().class
ImmutableTreeMap<K,V>
-
Uses of AbstractMapIterable in org.eclipse.collections.impl.map.sorted.mutable
Subclasses of AbstractMapIterable in org.eclipse.collections.impl.map.sorted.mutable Modifier and Type Class Description class
AbstractMutableSortedMap<K,V>
class
SortedMapAdapter<K,V>
This class provides a MutableSortedMap wrapper around a JDK Collections SortedMap interface instance.class
TreeSortedMap<K,V>
-
Uses of AbstractMapIterable in org.eclipse.collections.impl.map.strategy.immutable
Subclasses of AbstractMapIterable in org.eclipse.collections.impl.map.strategy.immutable Modifier and Type Class Description (package private) class
ImmutableEmptyMapWithHashingStrategy<K,V>
This is a zero elementImmutableUnifiedMapWithHashingStrategy
which is created by calling the HashingStrategyMaps.immutable.empty() method.class
ImmutableUnifiedMapWithHashingStrategy<K,V>
-
Uses of AbstractMapIterable in org.eclipse.collections.impl.map.strategy.mutable
Subclasses of AbstractMapIterable 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.
-