Uses of Interface
org.eclipse.collections.api.map.UnsortedMapIterable
Packages that use UnsortedMapIterable
Package
Description
This package contains interfaces for map API which enhance the performance and functionality of
Map
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains mutable and immutable sorted map interfaces.
This package contains implementations of the
ImmutableMap
interface.This package contains implementations of the
MutableMap
interface.This package contains immutable map implementations backed by hashtables that rely on
HashingStrategy
s provided by
the developer to compute the hashCode and equals for the objects stored in the map.This package contains mutable map implementations backed by hashtables that rely on
HashingStrategy
s provided by
the developer to compute the hashCode and equals for the objects stored in the map.-
Uses of UnsortedMapIterable in org.eclipse.collections.api.map
Subinterfaces of UnsortedMapIterable in org.eclipse.collections.api.mapModifier and TypeInterfaceDescriptioninterface
ConcurrentMutableMap<K,
V> A ConcurrentMutableMap provides an api which combines and supports both MutableMap and ConcurrentMap.interface
FixedSizeMap<K,
V> A FixedSizeMap is a map that may be mutated, but cannot grow or shrink in size.interface
ImmutableMap<K,
V> An ImmutableMap is different from a JCF Map because it has no mutating methods.interface
MutableMap<K,
V> A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.Methods in org.eclipse.collections.api.map that return UnsortedMapIterableModifier and TypeMethodDescription<K2,
V2> UnsortedMapIterable<K2, V2> <R> UnsortedMapIterable<K,
R> UnsortedMapIterable.collectValues
(Function2<? super K, ? super V, ? extends R> function) UnsortedMapIterable.flipUniqueValues()
<V1> UnsortedMapIterable<V1,
V> UnsortedMapIterable.groupByUniqueKey
(Function<? super V, ? extends V1> function) UnsortedMapIterable.reject
(Predicate2<? super K, ? super V> predicate) UnsortedMapIterable.select
(Predicate2<? super K, ? super V> predicate) -
Uses of UnsortedMapIterable in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return UnsortedMapIterableModifier and TypeMethodDescription<VV> UnsortedMapIterable<VV,
V> PrimitiveObjectMap.groupByUniqueKey
(Function<? super V, ? extends VV> function) -
Uses of UnsortedMapIterable in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return UnsortedMapIterable -
Uses of UnsortedMapIterable in org.eclipse.collections.impl.map.immutable
Classes in org.eclipse.collections.impl.map.immutable that implement UnsortedMapIterable -
Uses of UnsortedMapIterable in org.eclipse.collections.impl.map.mutable
Classes in org.eclipse.collections.impl.map.mutable that implement UnsortedMapIterableModifier and TypeClassDescriptionclass
AbstractMutableMap<K,
V> final class
ConcurrentHashMap<K,
V> class
final class
Deprecated.since 2.0class
MapAdapter<K,
V> This class provides a MutableMap wrapper around a JDK Collections Map interface instance.class
A synchronized view of aMutableMap
.class
UnifiedMap<K,
V> UnifiedMap stores key/value pairs in a single array, where alternate slots are keys and values.class
An unmodifiable view of a map. -
Uses of UnsortedMapIterable in org.eclipse.collections.impl.map.strategy.immutable
Classes in org.eclipse.collections.impl.map.strategy.immutable that implement UnsortedMapIterable -
Uses of UnsortedMapIterable in org.eclipse.collections.impl.map.strategy.mutable
Classes in org.eclipse.collections.impl.map.strategy.mutable that implement UnsortedMapIterableModifier and TypeClassDescriptionclass
UnifiedMapWithHashingStrategy stores key/value pairs in a single array, where alternate slots are keys and values.