Uses of Interface
org.eclipse.collections.api.map.MapIterable
-
Packages that use MapIterable Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bimap This package contains interfaces for BiMap API.org.eclipse.collections.api.factory.map This package contains factory API for creating instances of typeMapIterable.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMaporg.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.immutable org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMapinterface.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollectioninterface.org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterableinterface.org.eclipse.collections.impl.lazy.parallel org.eclipse.collections.impl.lazy.parallel.list org.eclipse.collections.impl.lazy.parallel.set org.eclipse.collections.impl.lazy.parallel.set.sorted org.eclipse.collections.impl.map This package contains implementations of theMapIterableinterface.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.ordered.immutable org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMapinterface.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.org.eclipse.collections.impl.multimap This package contains implementations of theMultimapinterface.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet.org.eclipse.collections.impl.test This package containsSerializeTestHelperandVerifyclasses.org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections. -
-
Uses of MapIterable in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MapIterable Modifier and Type Method Description <K,V>
MapIterable<K,V>ParallelIterable. aggregateBy(Function<? super T,? extends K> groupBy, Function0<? extends V> zeroValueFactory, Function2<? super V,? super T,? extends V> nonMutatingAggregator)default <K,V>
MapIterable<K,V>RichIterable. aggregateBy(Function<? super T,? extends K> groupBy, Function0<? extends V> zeroValueFactory, Function2<? super V,? super T,? extends V> nonMutatingAggregator)Applies an aggregate function over the iterable grouping results into a map based on the specific groupBy function.<K,V>
MapIterable<K,V>ParallelIterable. aggregateInPlaceBy(Function<? super T,? extends K> groupBy, Function0<? extends V> zeroValueFactory, Procedure2<? super V,? super T> mutatingAggregator)default <K,V>
MapIterable<K,V>RichIterable. aggregateInPlaceBy(Function<? super T,? extends K> groupBy, Function0<? extends V> zeroValueFactory, Procedure2<? super V,? super T> mutatingAggregator)Applies an aggregate procedure over the iterable grouping results into a Map based on the specific groupBy function.<V> MapIterable<V,T>ParallelIterable. groupByUniqueKey(Function<? super T,? extends V> function)<V> MapIterable<V,T>RichIterable. groupByUniqueKey(Function<? super T,? extends V> function)For each element of the iterable, the function is evaluated, and the results of these evaluations are collected into a new map, where the transformed value is the key.default <K> MapIterable<K,T>RichIterable. reduceBy(Function<? super T,? extends K> groupBy, Function2<? super T,? super T,? extends T> reduceFunction)Applies an aggregate function over the iterable grouping results into a map based on the specific groupBy function. -
Uses of MapIterable in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return MapIterable Modifier and Type Method Description MapIterable<T,java.lang.Integer>Bag. toMapOfItemToCount()Converts the Bag to a Map of the Item type to its count as an Integer. -
Uses of MapIterable in org.eclipse.collections.api.bimap
Subinterfaces of MapIterable in org.eclipse.collections.api.bimap Modifier and Type Interface Description interfaceBiMap<K,V>A map that allows users to look up key-value pairs from either direction.interfaceImmutableBiMap<K,V>ABiMapwhose contents cannot be altered after initialization.interfaceMutableBiMap<K,V>ABiMapwhose contents can be altered after initialization.Methods in org.eclipse.collections.api.bimap with parameters of type MapIterable Modifier and Type Method Description ImmutableBiMap<K,V>ImmutableBiMap. newWithMapIterable(MapIterable<? extends K,? extends V> mapIterable)default MutableBiMap<K,V>MutableBiMap. withMapIterable(MapIterable<? extends K,? extends V> mapIterable) -
Uses of MapIterable in org.eclipse.collections.api.factory.map
Methods in org.eclipse.collections.api.factory.map with parameters of type MapIterable Modifier and Type Method Description <K,V>
MutableMap<K,V>MutableMapFactory. ofMapIterable(MapIterable<? extends K,? extends V> mapIterable)<K,V>
MutableMap<K,V>MutableMapFactory. withMapIterable(MapIterable<? extends K,? extends V> mapIterable) -
Uses of MapIterable in org.eclipse.collections.api.map
Subinterfaces of MapIterable 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.interfaceImmutableMapIterable<K,V>interfaceImmutableOrderedMap<K,V>interfaceMutableMap<K,V>A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.interfaceMutableMapIterable<K,V>interfaceMutableOrderedMap<K,V>interfaceOrderedMap<K,V>A map whose keys are ordered but not necessarily sorted, for example a linked hash map.interfaceUnsortedMapIterable<K,V>An iterable Map whose elements are unsorted.Methods in org.eclipse.collections.api.map that return MapIterable Modifier and Type Method Description default <K1,V1,V2>
MapIterable<K1,V2>MapIterable. aggregateBy(Function<? super K,? extends K1> keyFunction, Function<? super V,? extends V1> valueFunction, Function0<? extends V2> zeroValueFactory, Function2<? super V2,? super V1,? extends V2> nonMutatingAggregator)Applies an aggregate function over the map grouping results into a map based on the specific key and value groupBy functions.<K2,V2>
MapIterable<K2,V2>MapIterable. collect(Function2<? super K,? super V,Pair<K2,V2>> function)For each key and value of the map the function is evaluated.<R> MapIterable<R,V>MapIterable. collectKeysUnique(Function2<? super K,? super V,? extends R> function)For each key and value of the map the function is evaluated.<R> MapIterable<K,R>MapIterable. collectValues(Function2<? super K,? super V,? extends R> function)For each key and value of the map the function is evaluated.MapIterable<V,K>MapIterable. flipUniqueValues()Return the MapIterable that is obtained by flipping the direction of this map and making the associations from value to key.MapIterable<K,V>MapIterable. reject(Predicate2<? super K,? super V> predicate)For each key and value of the map the predicate is evaluated, if the result of the evaluation is false, that key and value are returned in a new map.MapIterable<K,V>MapIterable. select(Predicate2<? super K,? super V> predicate)For each key and value of the map the predicate is evaluated, if the result of the evaluation is true, that key and value are returned in a new map.MapIterable<K,V>MapIterable. tap(Procedure<? super V> procedure)Executes the Procedure for each value of the map and returnsthis.Methods in org.eclipse.collections.api.map with parameters of type MapIterable Modifier and Type Method Description ImmutableMap<K,V>ImmutableMap. newWithMapIterable(MapIterable<? extends K,? extends V> mapIterable)ImmutableMapIterable<K,V>ImmutableMapIterable. newWithMapIterable(MapIterable<? extends K,? extends V> mapIterable)ImmutableOrderedMap<K,V>ImmutableOrderedMap. newWithMapIterable(MapIterable<? extends K,? extends V> mapIterable)default voidFixedSizeMap. putAllMapIterable(MapIterable<? extends K,? extends V> mapIterable)default voidMutableMapIterable. putAllMapIterable(MapIterable<? extends K,? extends V> mapIterable)default ConcurrentMutableMap<K,V>ConcurrentMutableMap. withMapIterable(MapIterable<? extends K,? extends V> mapIterable)default FixedSizeMap<K,V>FixedSizeMap. withMapIterable(MapIterable<? extends K,? extends V> mapIterable)default MutableMap<K,V>MutableMap. withMapIterable(MapIterable<? extends K,? extends V> mapIterable)default MutableMapIterable<K,V>MutableMapIterable. withMapIterable(MapIterable<? extends K,? extends V> mapIterable)default MutableOrderedMap<K,V>MutableOrderedMap. withMapIterable(MapIterable<? extends K,? extends V> mapIterable) -
Uses of MapIterable in org.eclipse.collections.api.map.sorted
Subinterfaces of MapIterable in org.eclipse.collections.api.map.sorted Modifier and Type Interface Description interfaceImmutableSortedMap<K,V>An ImmutableSortedMap is different from a JCF SortedMap because it has no mutating methods.interfaceMutableSortedMap<K,V>A MutableSortedMap is similar to a JCF Map but adds additional useful internal iterator methods.interfaceSortedMapIterable<K,V>An iterable Map whose elements are sorted.Methods in org.eclipse.collections.api.map.sorted with parameters of type MapIterable Modifier and Type Method Description ImmutableSortedMap<K,V>ImmutableSortedMap. newWithMapIterable(MapIterable<? extends K,? extends V> mapIterable)default MutableSortedMap<K,V>MutableSortedMap. withMapIterable(MapIterable<? extends K,? extends V> mapIterable) -
Uses of MapIterable in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl that return MapIterable Modifier and Type Method Description <K,V>
MapIterable<K,V>UnmodifiableRichIterable. aggregateBy(Function<? super T,? extends K> groupBy, Function0<? extends V> zeroValueFactory, Function2<? super V,? super T,? extends V> nonMutatingAggregator)<K,V>
MapIterable<K,V>UnmodifiableRichIterable. aggregateInPlaceBy(Function<? super T,? extends K> groupBy, Function0<? extends V> zeroValueFactory, Procedure2<? super V,? super T> mutatingAggregator)<V> MapIterable<V,T>UnmodifiableRichIterable. groupByUniqueKey(Function<? super T,? extends V> function) -
Uses of MapIterable in org.eclipse.collections.impl.bimap
Classes in org.eclipse.collections.impl.bimap that implement MapIterable Modifier and Type Class Description classAbstractBiMap<K,V>Methods in org.eclipse.collections.impl.bimap that return MapIterable Modifier and Type Method Description protected abstract MapIterable<K,V>AbstractBiMap. getDelegate()protected abstract MapIterable<V,K>AbstractBiMap. getInverse() -
Uses of MapIterable in org.eclipse.collections.impl.bimap.immutable
Classes in org.eclipse.collections.impl.bimap.immutable that implement MapIterable Modifier and Type Class Description classAbstractImmutableBiMap<K,V>private static classAbstractImmutableBiMap.Inverse<K,V>(package private) classImmutableHashBiMap<K,V>Methods in org.eclipse.collections.impl.bimap.immutable with parameters of type MapIterable Modifier and Type Method Description ImmutableBiMap<K,V>AbstractImmutableBiMap. newWithMapIterable(MapIterable<? extends K,? extends V> mapIterable) -
Uses of MapIterable in org.eclipse.collections.impl.bimap.mutable
Classes in org.eclipse.collections.impl.bimap.mutable that implement MapIterable Modifier and Type Class Description (package private) classAbstractMutableBiMap<K,V>private static classAbstractMutableBiMap.Inverse<K,V>classHashBiMap<K,V>AMutableBiMapwhich uses two hash tables as its underlying data store.classSynchronizedBiMap<K,V>classUnmodifiableBiMap<K,V>Methods in org.eclipse.collections.impl.bimap.mutable with parameters of type MapIterable Modifier and Type Method Description voidSynchronizedBiMap. putAllMapIterable(MapIterable<? extends K,? extends V> mapIterable)voidUnmodifiableBiMap. putAllMapIterable(MapIterable<? extends K,? extends V> mapIterable)MutableBiMap<K,V>SynchronizedBiMap. withMapIterable(MapIterable<? extends K,? extends V> mapIterable)MutableBiMap<K,V>UnmodifiableBiMap. withMapIterable(MapIterable<? extends K,? extends V> mapIterable) -
Uses of MapIterable in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return MapIterable Modifier and Type Method Description <K,V>
MapIterable<K,V>AbstractSynchronizedRichIterable. aggregateBy(Function<? super T,? extends K> groupBy, Function0<? extends V> zeroValueFactory, Function2<? super V,? super T,? extends V> nonMutatingAggregator)<K,V>
MapIterable<K,V>AbstractSynchronizedRichIterable. aggregateInPlaceBy(Function<? super T,? extends K> groupBy, Function0<? extends V> zeroValueFactory, Procedure2<? super V,? super T> mutatingAggregator)<V> MapIterable<V,T>AbstractSynchronizedRichIterable. groupByUniqueKey(Function<? super T,? extends V> function)<K> MapIterable<K,T>AbstractSynchronizedRichIterable. reduceBy(Function<? super T,? extends K> groupBy, Function2<? super T,? super T,? extends T> reduceFunction) -
Uses of MapIterable in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable that return MapIterable Modifier and Type Method Description <K> MapIterable<K,T>AbstractMultiReaderMutableCollection. reduceBy(Function<? super T,? extends K> groupBy, Function2<? super T,? super T,? extends T> reduceFunction) -
Uses of MapIterable in org.eclipse.collections.impl.lazy
Methods in org.eclipse.collections.impl.lazy that return MapIterable Modifier and Type Method Description <V> MapIterable<V,T>AbstractLazyIterable. groupByUniqueKey(Function<? super T,? extends V> function) -
Uses of MapIterable in org.eclipse.collections.impl.lazy.parallel
Methods in org.eclipse.collections.impl.lazy.parallel that return MapIterable Modifier and Type Method Description <K,V>
MapIterable<K,V>AbstractMultiReaderParallelIterable. aggregateBy(Function<? super T,? extends K> groupBy, Function0<? extends V> zeroValueFactory, Function2<? super V,? super T,? extends V> nonMutatingAggregator)<K,V>
MapIterable<K,V>AbstractParallelIterable. aggregateBy(Function<? super T,? extends K> groupBy, Function0<? extends V> zeroValueFactory, Function2<? super V,? super T,? extends V> nonMutatingAggregator)<K,V>
MapIterable<K,V>AbstractSynchronizedParallelIterable. aggregateBy(Function<? super T,? extends K> groupBy, Function0<? extends V> zeroValueFactory, Function2<? super V,? super T,? extends V> nonMutatingAggregator)<K,V>
MapIterable<K,V>NonParallelIterable. aggregateBy(Function<? super T,? extends K> groupBy, Function0<? extends V> zeroValueFactory, Function2<? super V,? super T,? extends V> nonMutatingAggregator)<K,V>
MapIterable<K,V>AbstractMultiReaderParallelIterable. aggregateInPlaceBy(Function<? super T,? extends K> groupBy, Function0<? extends V> zeroValueFactory, Procedure2<? super V,? super T> mutatingAggregator)<K,V>
MapIterable<K,V>AbstractParallelIterable. aggregateInPlaceBy(Function<? super T,? extends K> groupBy, Function0<? extends V> zeroValueFactory, Procedure2<? super V,? super T> mutatingAggregator)<K,V>
MapIterable<K,V>AbstractSynchronizedParallelIterable. aggregateInPlaceBy(Function<? super T,? extends K> groupBy, Function0<? extends V> zeroValueFactory, Procedure2<? super V,? super T> mutatingAggregator)<K,V>
MapIterable<K,V>NonParallelIterable. aggregateInPlaceBy(Function<? super T,? extends K> groupBy, Function0<? extends V> zeroValueFactory, Procedure2<? super V,? super T> mutatingAggregator)<V> MapIterable<V,T>AbstractMultiReaderParallelIterable. groupByUniqueKey(Function<? super T,? extends V> function)<V> MapIterable<V,T>AbstractParallelIterable. groupByUniqueKey(Function<? super T,? extends V> function)<V> MapIterable<V,T>AbstractSynchronizedParallelIterable. groupByUniqueKey(Function<? super T,? extends V> function)<V> MapIterable<V,T>NonParallelIterable. groupByUniqueKey(Function<? super T,? extends V> function)<V> MapIterable<V,T>ParallelDistinctIterable. groupByUniqueKey(Function<? super T,? extends V> function) -
Uses of MapIterable in org.eclipse.collections.impl.lazy.parallel.list
Methods in org.eclipse.collections.impl.lazy.parallel.list that return MapIterable Modifier and Type Method Description <V> MapIterable<V,T>AbstractParallelListIterable. groupByUniqueKey(Function<? super T,? extends V> function)<V> MapIterable<V,T>ListIterableParallelIterable. groupByUniqueKey(Function<? super T,? extends V> function)<V> MapIterable<V,T>ParallelDistinctListIterable. groupByUniqueKey(Function<? super T,? extends V> function) -
Uses of MapIterable in org.eclipse.collections.impl.lazy.parallel.set
Methods in org.eclipse.collections.impl.lazy.parallel.set that return MapIterable Modifier and Type Method Description <V1> MapIterable<V1,V>ParallelCollectIterable. groupByUniqueKey(Function<? super V,? extends V1> function)<V1> MapIterable<V1,V>ParallelFlatCollectIterable. groupByUniqueKey(Function<? super V,? extends V1> function) -
Uses of MapIterable in org.eclipse.collections.impl.lazy.parallel.set.sorted
Methods in org.eclipse.collections.impl.lazy.parallel.set.sorted that return MapIterable Modifier and Type Method Description <V> MapIterable<V,T>AbstractParallelSortedSetIterable. groupByUniqueKey(Function<? super T,? extends V> function) -
Uses of MapIterable in org.eclipse.collections.impl.map
Classes in org.eclipse.collections.impl.map that implement MapIterable Modifier and Type Class Description classAbstractMapIterable<K,V>classAbstractSynchronizedMapIterable<K,V>A synchronized view of a map. -
Uses of MapIterable in org.eclipse.collections.impl.map.fixed
Classes in org.eclipse.collections.impl.map.fixed that implement MapIterable 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 MapIterable in org.eclipse.collections.impl.map.immutable
Classes in org.eclipse.collections.impl.map.immutable that implement MapIterable 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>Methods in org.eclipse.collections.impl.map.immutable with parameters of type MapIterable Modifier and Type Method Description ImmutableMap<K,V>AbstractImmutableMap. newWithMapIterable(MapIterable<? extends K,? extends V> mapIterable) -
Uses of MapIterable in org.eclipse.collections.impl.map.mutable
Classes in org.eclipse.collections.impl.map.mutable that implement MapIterable Modifier and Type Class Description classAbstractMutableMap<K,V>classAbstractMutableMapIterable<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.Methods in org.eclipse.collections.impl.map.mutable with parameters of type MapIterable Modifier and Type Method Description <K,V>
MutableMap<K,V>MutableMapFactoryImpl. ofMapIterable(MapIterable<? extends K,? extends V> mapIterable)voidSynchronizedMutableMap. putAllMapIterable(MapIterable<? extends K,? extends V> mapIterable)voidUnmodifiableMutableMap. putAllMapIterable(MapIterable<? extends K,? extends V> mapIterable)ConcurrentHashMap<K,V>ConcurrentHashMap. withMapIterable(MapIterable<? extends K,? extends V> mapIterable)<K,V>
MutableMap<K,V>MutableMapFactoryImpl. withMapIterable(MapIterable<? extends K,? extends V> mapIterable)MutableMap<K,V>SynchronizedMutableMap. withMapIterable(MapIterable<? extends K,? extends V> mapIterable)MutableMap<K,V>UnmodifiableMutableMap. withMapIterable(MapIterable<? extends K,? extends V> mapIterable) -
Uses of MapIterable in org.eclipse.collections.impl.map.ordered.immutable
Classes in org.eclipse.collections.impl.map.ordered.immutable that implement MapIterable Modifier and Type Class Description classImmutableOrderedMapAdapter<K,V>Methods in org.eclipse.collections.impl.map.ordered.immutable with parameters of type MapIterable Modifier and Type Method Description ImmutableOrderedMap<K,V>ImmutableOrderedMapAdapter. newWithMapIterable(MapIterable<? extends K,? extends V> mapIterable) -
Uses of MapIterable in org.eclipse.collections.impl.map.ordered.mutable
Classes in org.eclipse.collections.impl.map.ordered.mutable that implement MapIterable Modifier and Type Class Description classOrderedMapAdapter<K,V>classUnmodifiableMutableOrderedMap<K,V>An unmodifiable view of a map.Methods in org.eclipse.collections.impl.map.ordered.mutable with parameters of type MapIterable Modifier and Type Method Description voidOrderedMapAdapter. putAllMapIterable(MapIterable<? extends K,? extends V> mapIterable)voidUnmodifiableMutableOrderedMap. putAllMapIterable(MapIterable<? extends K,? extends V> mapIterable)MutableOrderedMap<K,V>OrderedMapAdapter. withMapIterable(MapIterable<? extends K,? extends V> mapIterable)MutableOrderedMap<K,V>UnmodifiableMutableOrderedMap. withMapIterable(MapIterable<? extends K,? extends V> mapIterable) -
Uses of MapIterable in org.eclipse.collections.impl.map.sorted.immutable
Classes in org.eclipse.collections.impl.map.sorted.immutable that implement MapIterable Modifier and Type Class Description classAbstractImmutableSortedMap<K,V>(package private) classImmutableEmptySortedMap<K,V>This is a zero elementImmutableSortedMapwhich is created by calling SortedMaps.immutable.empty().classImmutableTreeMap<K,V>Methods in org.eclipse.collections.impl.map.sorted.immutable with parameters of type MapIterable Modifier and Type Method Description ImmutableSortedMap<K,V>AbstractImmutableSortedMap. newWithMapIterable(MapIterable<? extends K,? extends V> mapIterable) -
Uses of MapIterable in org.eclipse.collections.impl.map.sorted.mutable
Classes in org.eclipse.collections.impl.map.sorted.mutable that implement MapIterable Modifier and Type Class Description classAbstractMutableSortedMap<K,V>classSortedMapAdapter<K,V>This class provides a MutableSortedMap wrapper around a JDK Collections SortedMap interface instance.classSynchronizedSortedMap<K,V>A synchronized view of a SortedMap.classTreeSortedMap<K,V>classUnmodifiableTreeMap<K,V>An unmodifiable view of a map.Methods in org.eclipse.collections.impl.map.sorted.mutable with parameters of type MapIterable Modifier and Type Method Description voidSynchronizedSortedMap. putAllMapIterable(MapIterable<? extends K,? extends V> mapIterable)voidUnmodifiableTreeMap. putAllMapIterable(MapIterable<? extends K,? extends V> mapIterable)MutableSortedMap<K,V>SynchronizedSortedMap. withMapIterable(MapIterable<? extends K,? extends V> mapIterable)MutableSortedMap<K,V>UnmodifiableTreeMap. withMapIterable(MapIterable<? extends K,? extends V> mapIterable) -
Uses of MapIterable in org.eclipse.collections.impl.map.strategy.immutable
Classes in org.eclipse.collections.impl.map.strategy.immutable that implement MapIterable 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>Methods in org.eclipse.collections.impl.map.strategy.immutable with parameters of type MapIterable Modifier and Type Method Description ImmutableMap<K,V>ImmutableUnifiedMapWithHashingStrategy. newWithMapIterable(MapIterable<? extends K,? extends V> mapIterable) -
Uses of MapIterable in org.eclipse.collections.impl.map.strategy.mutable
Classes in org.eclipse.collections.impl.map.strategy.mutable that implement MapIterable Modifier and Type Class Description classUnifiedMapWithHashingStrategy<K,V>UnifiedMapWithHashingStrategy stores key/value pairs in a single array, where alternate slots are keys and values. -
Uses of MapIterable in org.eclipse.collections.impl.multimap
Methods in org.eclipse.collections.impl.multimap that return MapIterable Modifier and Type Method Description protected abstract MapIterable<K,C>AbstractMultimap. getMap() -
Uses of MapIterable in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable that return MapIterable Modifier and Type Method Description <V> MapIterable<V,T>ImmutableTreeSet.SortedSetIterableParallelIterable. groupByUniqueKey(Function<? super T,? extends V> function) -
Uses of MapIterable in org.eclipse.collections.impl.test
Methods in org.eclipse.collections.impl.test with parameters of type MapIterable Modifier and Type Method Description static voidVerify. assertContainsAllKeyValues(java.lang.String mapIterableName, MapIterable<?,?> mapIterable, java.lang.Object... expectedKeyValues)Assert that the givenMapIterablecontains all the given keys and values.static voidVerify. assertContainsAllKeyValues(MapIterable<?,?> mapIterable, java.lang.Object... keyValues)Assert that the givenMapIterablecontains all the given keys and values.static voidVerify. assertContainsKey(java.lang.Object expectedKey, MapIterable<?,?> mapIterable)Assert that the givenMapIterablecontains an entry with the given key.static voidVerify. assertContainsKey(java.lang.String mapIterableName, java.lang.Object expectedKey, MapIterable<?,?> mapIterable)Assert that the givenMapIterablecontains an entry with the given key.static voidVerify. assertContainsKeyValue(java.lang.Object expectedKey, java.lang.Object expectedValue, MapIterable<?,?> mapIterable)Assert that the givenMapIterablecontains an entry with the given key and value.static voidVerify. assertContainsKeyValue(java.lang.String mapIterableName, java.lang.Object expectedKey, java.lang.Object expectedValue, MapIterable<?,?> mapIterable)Assert that the givenMapIterablecontains an entry with the given key and value.private static voidVerify. assertMapContainsKeys(java.lang.String mapIterableName, MapIterable<?,?> mapIterable, java.lang.Object... expectedKeyValues)private static voidVerify. assertMapContainsValues(java.lang.String mapIterableName, MapIterable<?,?> mapIterable, java.lang.Object... expectedKeyValues) -
Uses of MapIterable in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type MapIterable Modifier and Type Method Description static <K,V>
MutableSetMultimap<V,K>MapIterate. flip(MapIterable<K,V> iMap)static <K,V>
MutableMap<V,K>MapIterate. flipUniqueValues(MapIterable<K,V> mapIterable)
-