Uses of Interface
org.eclipse.collections.api.map.MutableMapIterable
Packages that use MutableMapIterable
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains interfaces for BiMap API.
This package contains interfaces for map API which enhance the performance and functionality of
MapThis package contains mutable and immutable sorted map interfaces.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the
MutableBiMap interface.This package contains implementations of
Procedure and Procedure2.This package contains implementations of the
MutableCollection interface.This package contains implementations which has several parallel algorithms that work with Collections and make use of Java's fork-join
framework.
This package contains implementations of the
MutableList interface.This package contains implementations of the
MapIterable interface.This package contains implementations of the
FixedSizeMap interface.This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableMap interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap interface.This package contains mutable map implementations backed by hashtables that rely on
HashingStrategys provided by
the developer to compute the hashCode and equals for the objects stored in the map.This package contains classes which is used for parallel iteration through the containers.
This package contains implementations of the
ImmutableStack interface.This package contains implementations of the
MutableStack interface.This package contains
SerializeTestHelper and Verify classes.This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of MutableMapIterable in org.eclipse.collections.api
Methods in org.eclipse.collections.api with type parameters of type MutableMapIterableModifier and TypeMethodDescriptiondefault <K, V, R extends MutableMapIterable<K,V>>
RRichIterable.aggregateBy(Function<? super T, ? extends K> groupBy, Function0<? extends V> zeroValueFactory, Function2<? super V, ? super T, ? extends V> nonMutatingAggregator, R target) Applies an aggregate function over the iterable grouping results into the target map based on the specific groupBy function.<V, R extends MutableMapIterable<V,T>>
RRichIterable.groupByUniqueKey(Function<? super T, ? extends V> function, R target) Same asRichIterable.groupByUniqueKey(Function), except that the results are gathered into the specifiedtargetmap.default <K, R extends MutableMapIterable<K,T>>
RRichIterable.reduceBy(Function<? super T, ? extends K> groupBy, Function2<? super T, ? super T, ? extends T> reduceFunction, R target) Applies an aggregate function over the iterable grouping results into a map based on the specific groupBy function. -
Uses of MutableMapIterable in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with type parameters of type MutableMapIterableModifier and TypeMethodDescriptiondefault <K, V, R extends MutableMapIterable<K,V>>
RBag.aggregateBy(Function<? super T, ? extends K> groupBy, Function0<? extends V> zeroValueFactory, Function2<? super V, ? super T, ? extends V> nonMutatingAggregator, R target) Applies an aggregate function over the iterable grouping results into the target map based on the specific groupBy function.default <K, R extends MutableMapIterable<K,T>>
RBag.reduceBy(Function<? super T, ? extends K> groupBy, Function2<? super T, ? super T, ? extends T> reduceFunction, R target) Methods in org.eclipse.collections.api.bag that return MutableMapIterableModifier and TypeMethodDescriptionImmutableBagIterable.toMapOfItemToCount()MutableBagIterable.toMapOfItemToCount() -
Uses of MutableMapIterable in org.eclipse.collections.api.bimap
Subinterfaces of MutableMapIterable in org.eclipse.collections.api.bimapModifier and TypeInterfaceDescriptioninterfaceMutableBiMap<K,V> ABiMapwhose contents can be altered after initialization. -
Uses of MutableMapIterable in org.eclipse.collections.api.map
Subinterfaces of MutableMapIterable in org.eclipse.collections.api.mapModifier and TypeInterfaceDescriptioninterfaceConcurrentMutableMap<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.interfaceMutableMap<K,V> A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.interfaceMutableOrderedMap<K,V> Methods in org.eclipse.collections.api.map that return MutableMapIterableModifier and TypeMethodDescriptiondefault <K1,V1, V2> MutableMapIterable <K1, V2> MutableMapIterable.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) default <KK,VV> MutableMapIterable <KK, VV> MutableMapIterable.aggregateBy(Function<? super V, ? extends KK> groupBy, Function0<? extends VV> zeroValueFactory, Function2<? super VV, ? super V, ? extends VV> nonMutatingAggregator) default <KK,VV> MutableMapIterable <KK, VV> MutableMapIterable.aggregateInPlaceBy(Function<? super V, ? extends KK> groupBy, Function0<? extends VV> zeroValueFactory, Procedure2<? super VV, ? super V> mutatingAggregator) MutableMapIterable.asSynchronized()Returns a synchronized wrapper backed by this map.MutableMapIterable.asUnmodifiable()Returns an unmodifiable view of this map.<K2,V2> MutableMapIterable <K2, V2> <R> MutableMapIterable<R, V> MutableMapIterable.collectKeysUnique(Function2<? super K, ? super V, ? extends R> function) <R> MutableMapIterable<K, R> MutableMapIterable.collectValues(Function2<? super K, ? super V, ? extends R> function) MutableMapIterable.flipUniqueValues()<V1> MutableMapIterable<V1, V> MutableMapIterable.groupByUniqueKey(Function<? super V, ? extends V1> function) MutableMapIterable.newEmpty()Creates a new instance of the same type, using the default capacity and growth parameters.default <KK> MutableMapIterable<KK, V> MutableMapIterable.reduceBy(Function<? super V, ? extends KK> groupBy, Function2<? super V, ? super V, ? extends V> reduceFunction) MutableMapIterable.reject(Predicate2<? super K, ? super V> predicate) MutableMapIterable.select(Predicate2<? super K, ? super V> predicate) MutableMapIterable.withAllKeyValueArguments(Pair<? extends K, ? extends V>... keyValuePairs) Convenience var-args version of withAllKeyValuesMutableMapIterable.withAllKeyValues(Iterable<? extends Pair<? extends K, ? extends V>> keyValues) This method allows mutable, fixed size, and immutable maps the ability to add elements to their existing elements.MutableMapIterable.withKeyValue(K key, V value) This method allows mutable, fixed size, and immutable maps the ability to add elements to their existing elements.default MutableMapIterable<K, V> Similar toMap.putAll(Map), but returns this instead of voiddefault MutableMapIterable<K, V> MutableMapIterable.withMapIterable(MapIterable<? extends K, ? extends V> mapIterable) MutableMapIterable.withoutAllKeys(Iterable<? extends K> keys) This method allows mutable, fixed size, and immutable maps the ability to remove elements from their existing elements.MutableMapIterable.withoutKey(K key) This method allows mutable, fixed size, and immutable maps the ability to remove elements from their existing elements. -
Uses of MutableMapIterable in org.eclipse.collections.api.map.sorted
Subinterfaces of MutableMapIterable in org.eclipse.collections.api.map.sortedModifier and TypeInterfaceDescriptioninterfaceMutableSortedMap<K,V> A MutableSortedMap is similar to a JCF Map but adds additional useful internal iterator methods. -
Uses of MutableMapIterable in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with type parameters of type MutableMapIterableModifier and TypeMethodDescription<V, R extends MutableMapIterable<V,T>>
RAbstractRichIterable.groupByUniqueKey(Function<? super T, ? extends V> function, R target) <V, R extends MutableMapIterable<V,T>>
RUnmodifiableRichIterable.groupByUniqueKey(Function<? super T, ? extends V> function, R target) -
Uses of MutableMapIterable in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with type parameters of type MutableMapIterableModifier and TypeMethodDescription<VV, R extends MutableMapIterable<VV,V>>
RAbstractBiMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) -
Uses of MutableMapIterable in org.eclipse.collections.impl.bimap.mutable
Classes in org.eclipse.collections.impl.bimap.mutable that implement MutableMapIterableModifier and TypeClassDescription(package private) classAbstractMutableBiMap<K,V> private static classclassHashBiMap<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 type parameters of type MutableMapIterableModifier and TypeMethodDescription<VV, R extends MutableMapIterable<VV,V>>
RUnmodifiableBiMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) -
Uses of MutableMapIterable in org.eclipse.collections.impl.block.procedure
Fields in org.eclipse.collections.impl.block.procedure declared as MutableMapIterableModifier and TypeFieldDescriptionprivate final MutableMapIterable<K, V> MutatingAggregationProcedure.mapprivate final MutableMapIterable<K, V> NonMutatingAggregationProcedure.mapConstructors in org.eclipse.collections.impl.block.procedure with parameters of type MutableMapIterableModifierConstructorDescriptionMutatingAggregationProcedure(MutableMapIterable<K, V> map, Function<? super T, ? extends K> groupBy, Function0<? extends V> zeroValueFactory, Procedure2<? super V, ? super T> mutatingAggregator) NonMutatingAggregationProcedure(MutableMapIterable<K, V> map, Function<? super T, ? extends K> groupBy, Function0<? extends V> zeroValueFactory, Function2<? super V, ? super T, ? extends V> nonMutatingAggregator) -
Uses of MutableMapIterable in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with type parameters of type MutableMapIterableModifier and TypeMethodDescription<V, R extends MutableMapIterable<V,T>>
RAbstractSynchronizedRichIterable.groupByUniqueKey(Function<? super T, ? extends V> function, R target) -
Uses of MutableMapIterable in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with type parameters of type MutableMapIterableModifier and TypeMethodDescription<V, R extends MutableMapIterable<V,T>>
RAbstractCollectionAdapter.groupByUniqueKey(Function<? super T, ? extends V> function, R target) <V, R extends MutableMapIterable<V,T>>
RAbstractMultiReaderMutableCollection.groupByUniqueKey(Function<? super T, ? extends V> function, R target) <V, R extends MutableMapIterable<V,T>>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection.groupByUniqueKey(Function<? super T, ? extends V> function, R target) <V, R extends MutableMapIterable<V,T>>
RAbstractUnmodifiableMutableCollection.groupByUniqueKey(Function<? super T, ? extends V> function, R target) <K, R extends MutableMapIterable<K,T>>
RAbstractMultiReaderMutableCollection.reduceBy(Function<? super T, ? extends K> groupBy, Function2<? super T, ? super T, ? extends T> reduceFunction, R target) -
Uses of MutableMapIterable in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with type parameters of type MutableMapIterableModifier and TypeMethodDescriptionstatic <T, K, R extends MutableMapIterable<K,T>>
Collector<T, ?, R> Collectors2.aggregateBy(Function<? super T, ? extends K> groupBy, Function0<? extends T> zeroValueFactory, Function2<? super T, ? super T, ? extends T> aggregator, Supplier<R> supplier) Groups the elements using thegroupByfunction and all the elements that map to the same key are aggregated together using theaggregatorfunction.static <T, K, R extends MutableMapIterable<K,T>>
Collector<T, ?, R> Collectors2.groupByUniqueKey(Function<? super T, ? extends K> groupBy, Supplier<R> supplier) Same asCollectors2.groupBy(Function, Supplier), except the result of evaluating groupBy function should return a unique key, or else an exception is thrown. -
Uses of MutableMapIterable in org.eclipse.collections.impl.forkjoin
Methods in org.eclipse.collections.impl.forkjoin with type parameters of type MutableMapIterableModifier and TypeMethodDescriptionstatic <T, K, V, R extends MutableMapIterable<K,V>>
RFJIterate.aggregateBy(Iterable<T> iterable, Function<? super T, ? extends K> groupBy, Function0<? extends V> zeroValueFactory, Function2<? super V, ? super T, ? extends V> nonMutatingAggregator, R mutableMap) static <T, K, V, R extends MutableMapIterable<K,V>>
RFJIterate.aggregateBy(Iterable<T> iterable, Function<? super T, ? extends K> groupBy, Function0<? extends V> zeroValueFactory, Function2<? super V, ? super T, ? extends V> nonMutatingAggregator, R mutableMap, int batchSize) static <T, K, V, R extends MutableMapIterable<K,V>>
RFJIterate.aggregateBy(Iterable<T> iterable, Function<? super T, ? extends K> groupBy, Function0<? extends V> zeroValueFactory, Function2<? super V, ? super T, ? extends V> nonMutatingAggregator, R mutableMap, int batchSize, ForkJoinPool executor) static <T, K, V, R extends MutableMapIterable<K,V>>
RFJIterate.aggregateInPlaceBy(Iterable<T> iterable, Function<? super T, ? extends K> groupBy, Function0<? extends V> zeroValueFactory, Procedure2<? super V, ? super T> mutatingAggregator, R mutableMap) static <T, K, V, R extends MutableMapIterable<K,V>>
RFJIterate.aggregateInPlaceBy(Iterable<T> iterable, Function<? super T, ? extends K> groupBy, Function0<? extends V> zeroValueFactory, Procedure2<? super V, ? super T> mutatingAggregator, R mutableMap, int batchSize) static <T, K, V, R extends MutableMapIterable<K,V>>
RFJIterate.aggregateInPlaceBy(Iterable<T> iterable, Function<? super T, ? extends K> groupBy, Function0<? extends V> zeroValueFactory, Procedure2<? super V, ? super T> mutatingAggregator, R mutableMap, int batchSize, ForkJoinPool executor) -
Uses of MutableMapIterable in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with type parameters of type MutableMapIterableModifier and TypeMethodDescription<K, R extends MutableMapIterable<K,T>>
RFastList.groupByUniqueKey(Function<? super T, ? extends K> function, R target) -
Uses of MutableMapIterable in org.eclipse.collections.impl.map
Classes in org.eclipse.collections.impl.map that implement MutableMapIterableModifier and TypeClassDescriptionclassA synchronized view of a map.Methods in org.eclipse.collections.impl.map that return MutableMapIterableModifier and TypeMethodDescription<K1,V1, V2> MutableMapIterable <K1, V2> AbstractSynchronizedMapIterable.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) <KK,VV> MutableMapIterable <KK, VV> AbstractSynchronizedMapIterable.aggregateBy(Function<? super V, ? extends KK> groupBy, Function0<? extends VV> zeroValueFactory, Function2<? super VV, ? super V, ? extends VV> nonMutatingAggregator) <KK,VV> MutableMapIterable <KK, VV> AbstractSynchronizedMapIterable.aggregateInPlaceBy(Function<? super V, ? extends KK> groupBy, Function0<? extends VV> zeroValueFactory, Procedure2<? super VV, ? super V> mutatingAggregator) protected MutableMapIterable<K, V> AbstractSynchronizedMapIterable.getDelegate()<VV> MutableMapIterable<VV, V> AbstractSynchronizedMapIterable.groupByUniqueKey(Function<? super V, ? extends VV> function) <KK> MutableMapIterable<KK, V> AbstractSynchronizedMapIterable.reduceBy(Function<? super V, ? extends KK> groupBy, Function2<? super V, ? super V, ? extends V> reduceFunction) Constructors in org.eclipse.collections.impl.map with parameters of type MutableMapIterableModifierConstructorDescriptionprotectedAbstractSynchronizedMapIterable(MutableMapIterable<K, V> delegate) protectedAbstractSynchronizedMapIterable(MutableMapIterable<K, V> delegate, Object lock) -
Uses of MutableMapIterable in org.eclipse.collections.impl.map.fixed
Classes in org.eclipse.collections.impl.map.fixed that implement MutableMapIterableModifier and TypeClassDescription(package private) class(package private) final classDoubletonMap<K,V> (package private) final classEmptyMap<K,V> (package private) final classSingletonMap<K,V> (package private) final classTripletonMap<K,V> -
Uses of MutableMapIterable in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with type parameters of type MutableMapIterableModifier and TypeMethodDescription<VV, R extends MutableMapIterable<VV,V>>
RImmutableByteObjectEmptyMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableByteObjectHashMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableByteObjectSingletonMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableCharObjectEmptyMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableCharObjectHashMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableCharObjectSingletonMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableDoubleObjectEmptyMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableDoubleObjectHashMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableDoubleObjectSingletonMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableFloatObjectEmptyMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableFloatObjectHashMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableFloatObjectSingletonMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableIntObjectEmptyMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableIntObjectHashMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableIntObjectSingletonMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableLongObjectEmptyMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableLongObjectHashMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableLongObjectSingletonMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableShortObjectEmptyMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableShortObjectHashMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RImmutableShortObjectSingletonMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) -
Uses of MutableMapIterable in org.eclipse.collections.impl.map.mutable
Classes in org.eclipse.collections.impl.map.mutable that implement MutableMapIterableModifier and TypeClassDescriptionclassAbstractMutableMap<K,V> classfinal classConcurrentHashMap<K,V> classfinal classDeprecated.since 2.0classMapAdapter<K,V> This class provides a MutableMap wrapper around a JDK Collections Map interface instance.classA synchronized view of aMutableMap.classUnifiedMap<K,V> UnifiedMap stores key/value pairs in a single array, where alternate slots are keys and values.classAn unmodifiable view of a map.Fields in org.eclipse.collections.impl.map.mutable declared as MutableMapIterableModifier and TypeFieldDescriptionprivate MutableMapIterable<K, V> SynchronizedMapSerializationProxy.mapMethods in org.eclipse.collections.impl.map.mutable with type parameters of type MutableMapIterableModifier and TypeMethodDescription<VV, R extends MutableMapIterable<VV,V>>
RUnmodifiableMutableMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) Methods in org.eclipse.collections.impl.map.mutable that return MutableMapIterableModifier and TypeMethodDescription<VV> MutableMapIterable<VV, V> AbstractMutableMapIterable.groupByUniqueKey(Function<? super V, ? extends VV> function) Constructors in org.eclipse.collections.impl.map.mutable with parameters of type MutableMapIterable -
Uses of MutableMapIterable in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with type parameters of type MutableMapIterableModifier and TypeMethodDescription<VV, R extends MutableMapIterable<VV,V>>
RByteObjectHashMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RCharObjectHashMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RDoubleObjectHashMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RFloatObjectHashMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RIntObjectHashMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RLongObjectHashMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RShortObjectHashMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RSynchronizedByteObjectMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RSynchronizedCharObjectMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RSynchronizedDoubleObjectMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RSynchronizedFloatObjectMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RSynchronizedIntObjectMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RSynchronizedLongObjectMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <VV, R extends MutableMapIterable<VV,V>>
RSynchronizedShortObjectMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) <V1, R extends MutableMapIterable<V1,V>>
RUnmodifiableByteObjectMap.groupByUniqueKey(Function<? super V, ? extends V1> function, R target) <V1, R extends MutableMapIterable<V1,V>>
RUnmodifiableCharObjectMap.groupByUniqueKey(Function<? super V, ? extends V1> function, R target) <V1, R extends MutableMapIterable<V1,V>>
RUnmodifiableDoubleObjectMap.groupByUniqueKey(Function<? super V, ? extends V1> function, R target) <V1, R extends MutableMapIterable<V1,V>>
RUnmodifiableFloatObjectMap.groupByUniqueKey(Function<? super V, ? extends V1> function, R target) <V1, R extends MutableMapIterable<V1,V>>
RUnmodifiableIntObjectMap.groupByUniqueKey(Function<? super V, ? extends V1> function, R target) <V1, R extends MutableMapIterable<V1,V>>
RUnmodifiableLongObjectMap.groupByUniqueKey(Function<? super V, ? extends V1> function, R target) <V1, R extends MutableMapIterable<V1,V>>
RUnmodifiableShortObjectMap.groupByUniqueKey(Function<? super V, ? extends V1> function, R target) -
Uses of MutableMapIterable in org.eclipse.collections.impl.map.ordered.mutable
Classes in org.eclipse.collections.impl.map.ordered.mutable that implement MutableMapIterableModifier and TypeClassDescriptionclassOrderedMapAdapter<K,V> classAn unmodifiable view of a map.Methods in org.eclipse.collections.impl.map.ordered.mutable with type parameters of type MutableMapIterableModifier and TypeMethodDescription<VV, R extends MutableMapIterable<VV,V>>
RUnmodifiableMutableOrderedMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableMapIterable -
Uses of MutableMapIterable in org.eclipse.collections.impl.map.sorted.mutable
Classes in org.eclipse.collections.impl.map.sorted.mutable that implement MutableMapIterableModifier and TypeClassDescriptionclassclassSortedMapAdapter<K,V> This class provides a MutableSortedMap wrapper around a JDK Collections SortedMap interface instance.classA 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 type parameters of type MutableMapIterableModifier and TypeMethodDescription<VV, R extends MutableMapIterable<VV,V>>
RUnmodifiableTreeMap.groupByUniqueKey(Function<? super V, ? extends VV> function, R target) Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableMapIterableModifier and TypeMethodDescriptionSynchronizedSortedMap.flipUniqueValues()UnmodifiableTreeMap.flipUniqueValues() -
Uses of MutableMapIterable in org.eclipse.collections.impl.map.strategy.mutable
Classes in org.eclipse.collections.impl.map.strategy.mutable that implement MutableMapIterableModifier and TypeClassDescriptionclassUnifiedMapWithHashingStrategy stores key/value pairs in a single array, where alternate slots are keys and values. -
Uses of MutableMapIterable in org.eclipse.collections.impl.parallel
Methods in org.eclipse.collections.impl.parallel with type parameters of type MutableMapIterableModifier and TypeMethodDescriptionstatic <T, K, V, R extends MutableMapIterable<K,V>>
RParallelIterate.aggregateBy(Iterable<T> iterable, Function<? super T, ? extends K> groupBy, Function0<? extends V> zeroValueFactory, Function2<? super V, ? super T, ? extends V> nonMutatingAggregator, R mutableMap) static <T, K, V, R extends MutableMapIterable<K,V>>
RParallelIterate.aggregateBy(Iterable<T> iterable, Function<? super T, ? extends K> groupBy, Function0<? extends V> zeroValueFactory, Function2<? super V, ? super T, ? extends V> nonMutatingAggregator, R mutableMap, int batchSize) static <T, K, V, R extends MutableMapIterable<K,V>>
RParallelIterate.aggregateBy(Iterable<T> iterable, Function<? super T, ? extends K> groupBy, Function0<? extends V> zeroValueFactory, Function2<? super V, ? super T, ? extends V> nonMutatingAggregator, R mutableMap, int batchSize, Executor executor) static <T, K, V, R extends MutableMapIterable<K,V>>
RParallelIterate.aggregateInPlaceBy(Iterable<T> iterable, Function<? super T, ? extends K> groupBy, Function0<? extends V> zeroValueFactory, Procedure2<? super V, ? super T> mutatingAggregator, R mutableMap) static <T, K, V, R extends MutableMapIterable<K,V>>
RParallelIterate.aggregateInPlaceBy(Iterable<T> iterable, Function<? super T, ? extends K> groupBy, Function0<? extends V> zeroValueFactory, Procedure2<? super V, ? super T> mutatingAggregator, R mutableMap, int batchSize) static <T, K, V, R extends MutableMapIterable<K,V>>
RParallelIterate.aggregateInPlaceBy(Iterable<T> iterable, Function<? super T, ? extends K> groupBy, Function0<? extends V> zeroValueFactory, Procedure2<? super V, ? super T> mutatingAggregator, R mutableMap, int batchSize, Executor executor) -
Uses of MutableMapIterable in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with type parameters of type MutableMapIterableModifier and TypeMethodDescription<V, R extends MutableMapIterable<V,T>>
RImmutableArrayStack.groupByUniqueKey(Function<? super T, ? extends V> function, R target) Deprecated.<V, R extends MutableMapIterable<V,T>>
RImmutableEmptyStack.groupByUniqueKey(Function<? super T, ? extends V> function, R target) -
Uses of MutableMapIterable in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with type parameters of type MutableMapIterableModifier and TypeMethodDescription<V, R extends MutableMapIterable<V,T>>
RArrayStack.groupByUniqueKey(Function<? super T, ? extends V> function, R target) <V, R extends MutableMapIterable<V,T>>
RSynchronizedStack.groupByUniqueKey(Function<? super T, ? extends V> function, R target) <V, R extends MutableMapIterable<V,T>>
RUnmodifiableStack.groupByUniqueKey(Function<? super T, ? extends V> function, R target) -
Uses of MutableMapIterable in org.eclipse.collections.impl.test
Methods in org.eclipse.collections.impl.test with parameters of type MutableMapIterableModifier and TypeMethodDescriptionstatic voidVerify.assertContainsAllKeyValues(String mutableMapIterableName, MutableMapIterable<?, ?> mutableMapIterable, Object... expectedKeyValues) Assert that the givenMutableMapIterablecontains all the given keys and values.static voidVerify.assertContainsAllKeyValues(MutableMapIterable<?, ?> mutableMapIterable, Object... keyValues) Assert that the givenMutableMapIterablecontains all the given keys and values.static voidVerify.assertContainsKey(Object expectedKey, MutableMapIterable<?, ?> mutableMapIterable) Assert that the givenMutableMapIterablecontains an entry with the given key.static voidVerify.assertContainsKey(String mutableMapIterableName, Object expectedKey, MutableMapIterable<?, ?> mutableMapIterable) Assert that the givenMutableMapIterablecontains an entry with the given key.static voidVerify.assertContainsKeyValue(Object expectedKey, Object expectedValue, MutableMapIterable<?, ?> mapIterable) Assert that the givenMutableMapIterablecontains an entry with the given key and value.static voidVerify.assertContainsKeyValue(String mapIterableName, Object expectedKey, Object expectedValue, MutableMapIterable<?, ?> mutableMapIterable) Assert that the givenMutableMapIterablecontains an entry with the given key and value.static voidVerify.assertEmpty(String mutableMapIterableName, MutableMapIterable<?, ?> actualMutableMapIterable) Assert that the givenCollectionis empty.static voidVerify.assertEmpty(MutableMapIterable<?, ?> actualMutableMapIterable) Assert that the givenMutableMapIterableis empty.private static voidVerify.assertMapContainsKeys(String mutableMapIterableName, MutableMapIterable<?, ?> mutableMapIterable, Object... expectedKeyValues) private static voidVerify.assertMapContainsValues(String mutableMapIterableName, MutableMapIterable<?, ?> mutableMapIterable, Object... expectedKeyValues) static voidVerify.assertNotEmpty(String mutableMapIterableName, MutableMapIterable<?, ?> actualMutableMapIterable) Assert that the givenMutableMapIterableis not empty.static voidVerify.assertNotEmpty(MutableMapIterable<?, ?> actualMutableMapIterable) Assert that the givenMutableMapIterableis not empty.static voidVerify.assertSize(int expectedSize, MutableMapIterable<?, ?> mutableMapIterable) Assert the size of the givenMutableMapIterable.static voidVerify.assertSize(String mapName, int expectedSize, MutableMapIterable<?, ?> mutableMapIterable) Assert the size of the givenMutableMapIterable. -
Uses of MutableMapIterable in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with type parameters of type MutableMapIterableModifier and TypeMethodDescriptionstatic <T, V, R extends MutableMapIterable<V,T>>
RArrayIterate.groupByUniqueKey(T[] array, Function<? super T, ? extends V> function, R target) static <T, V, R extends MutableMapIterable<V,T>>
RArrayListIterate.groupByUniqueKey(ArrayList<T> list, Function<? super T, ? extends V> function, R target) static <V, T, R extends MutableMapIterable<V,T>>
RIterate.groupByUniqueKey(Iterable<T> iterable, Function<? super T, ? extends V> function, R target) static <K, T, R extends MutableMapIterable<K,T>>
RListIterate.groupByUniqueKey(List<T> list, Function<? super T, ? extends K> function, R target) Methods in org.eclipse.collections.impl.utility that return MutableMapIterableModifier and TypeMethodDescriptionstatic <T,V> MutableMapIterable <V, T> ArrayIterate.groupByUniqueKey(T[] array, Function<? super T, ? extends V> function) -
Uses of MutableMapIterable in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with type parameters of type MutableMapIterableModifier and TypeMethodDescriptionstatic <T, K, R extends MutableMapIterable<K,T>>
RInternalArrayIterate.groupByUniqueKey(T[] array, int size, Function<? super T, ? extends K> function, R target) static <K, T, R extends MutableMapIterable<K,T>>
RIterableIterate.groupByUniqueKey(Iterable<T> iterable, Function<? super T, ? extends K> function, R target) static <K, T, R extends MutableMapIterable<K,T>>
RIteratorIterate.groupByUniqueKey(Iterator<T> iterator, Function<? super T, ? extends K> function, R target) static <K, T, R extends MutableMapIterable<K,T>>
RRandomAccessListIterate.groupByUniqueKey(List<T> list, Function<? super T, ? extends K> function, R target)