Uses of Interface
org.eclipse.collections.api.map.UnsortedMapIterable
-
Packages that use UnsortedMapIterable Package Description org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMaporg.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.impl.map.fixed This package contains implementations of theFixedSizeMapinterface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMapinterface.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMapinterface.org.eclipse.collections.impl.map.strategy.immutable This package contains immutable map implementations backed by hashtables that rely onHashingStrategys 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 onHashingStrategys 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.map Modifier and Type Interface Description interfaceConcurrentMutableMap<K,V>A ConcurrentMutableMap provides an api which combines and supports both MutableMap and ConcurrentMap.interfaceFixedSizeMap<K,V>A FixedSizeMap is a map that may be mutated, but cannot grow or shrink in size.interfaceImmutableMap<K,V>An ImmutableMap is different from a JCF Map because it has no mutating methods.interfaceMutableMap<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 UnsortedMapIterable Modifier and Type Method Description <K2,V2>
UnsortedMapIterable<K2,V2>UnsortedMapIterable. collect(Function2<? super K,? super V,Pair<K2,V2>> function)<R> UnsortedMapIterable<K,R>UnsortedMapIterable. collectValues(Function2<? super K,? super V,? extends R> function)UnsortedMapIterable<V,K>UnsortedMapIterable. flipUniqueValues()<V1> UnsortedMapIterable<V1,V>UnsortedMapIterable. groupByUniqueKey(Function<? super V,? extends V1> function)UnsortedMapIterable<K,V>UnsortedMapIterable. reject(Predicate2<? super K,? super V> predicate)UnsortedMapIterable<K,V>UnsortedMapIterable. select(Predicate2<? super K,? super V> predicate)UnsortedMapIterable<K,V>UnsortedMapIterable. tap(Procedure<? super V> procedure) -
Uses of UnsortedMapIterable in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return UnsortedMapIterable Modifier and Type Method Description <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 Modifier and Type Method Description <K2,V2>
UnsortedMapIterable<K2,V2>SortedMapIterable. collect(Function2<? super K,? super V,Pair<K2,V2>> function) -
Uses of UnsortedMapIterable in org.eclipse.collections.impl.map.fixed
Classes in org.eclipse.collections.impl.map.fixed that implement UnsortedMapIterable Modifier and Type Class Description (package private) classAbstractMemoryEfficientMutableMap<K,V>(package private) classDoubletonMap<K,V>(package private) classEmptyMap<K,V>(package private) classSingletonMap<K,V>(package private) classTripletonMap<K,V> -
Uses of UnsortedMapIterable in org.eclipse.collections.impl.map.immutable
Classes in org.eclipse.collections.impl.map.immutable that implement UnsortedMapIterable Modifier and Type Class Description classAbstractImmutableMap<K,V>(package private) classImmutableDoubletonMap<K,V>(package private) classImmutableEmptyMap<K,V>This is a zero elementImmutableMapwhich is created by calling the Maps.immutable.empty() method.(package private) classImmutableQuadrupletonMap<K,V>(package private) classImmutableSingletonMap<K,V>(package private) classImmutableTripletonMap<K,V>classImmutableUnifiedMap<K,V> -
Uses of UnsortedMapIterable in org.eclipse.collections.impl.map.mutable
Classes in org.eclipse.collections.impl.map.mutable that implement UnsortedMapIterable Modifier and Type Class Description classAbstractMutableMap<K,V>classConcurrentHashMap<K,V>classConcurrentHashMapUnsafe<K,V>classConcurrentMutableHashMap<K,V>Deprecated.since 2.0classMapAdapter<K,V>This class provides a MutableMap wrapper around a JDK Collections Map interface instance.classSynchronizedMutableMap<K,V>A synchronized view of aMutableMap.classUnifiedMap<K,V>UnifiedMap stores key/value pairs in a single array, where alternate slots are keys and values.classUnmodifiableMutableMap<K,V>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 Modifier and Type Class Description (package private) classImmutableEmptyMapWithHashingStrategy<K,V>This is a zero elementImmutableUnifiedMapWithHashingStrategywhich is created by calling the HashingStrategyMaps.immutable.empty() method.classImmutableUnifiedMapWithHashingStrategy<K,V> -
Uses of UnsortedMapIterable in org.eclipse.collections.impl.map.strategy.mutable
Classes in org.eclipse.collections.impl.map.strategy.mutable that implement UnsortedMapIterable Modifier and Type Class Description classUnifiedMapWithHashingStrategy<K,V>UnifiedMapWithHashingStrategy stores key/value pairs in a single array, where alternate slots are keys and values.
-