Uses of Interface
org.eclipse.collections.api.map.MutableMapIterable
-
Packages that use MutableMapIterable 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.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.mutable This package contains implementations of theMutableBiMapinterface.org.eclipse.collections.impl.block.procedure This package contains implementations ofProcedureandProcedure2.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollectioninterface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.forkjoin This package contains implementations which has several parallel algorithms that work with Collections and make use of Java's fork-join framework.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableListinterface.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.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMapinterface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMapinterface.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.parallel This package contains classes which is used for parallel iteration through the containers.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStackinterface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStackinterface.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.org.eclipse.collections.impl.utility.internal 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 MutableMapIterable Modifier and Type Method Description default <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 MutableMapIterable Modifier and Type Method Description default <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 MutableMapIterable Modifier and Type Method Description MutableMapIterable<T,java.lang.Integer>ImmutableBagIterable. toMapOfItemToCount()MutableMapIterable<T,java.lang.Integer>MutableBagIterable. toMapOfItemToCount() -
Uses of MutableMapIterable in org.eclipse.collections.api.bimap
Subinterfaces of MutableMapIterable in org.eclipse.collections.api.bimap Modifier and Type Interface Description interfaceMutableBiMap<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.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.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 MutableMapIterable Modifier and Type Method Description default <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<K,V>MutableMapIterable. asSynchronized()Returns a synchronized wrapper backed by this map.MutableMapIterable<K,V>MutableMapIterable. asUnmodifiable()Returns an unmodifiable view of this map.<K2,V2>
MutableMapIterable<K2,V2>MutableMapIterable. collect(Function2<? super K,? super V,Pair<K2,V2>> function)<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<V,K>MutableMapIterable. flipUniqueValues()<V1> MutableMapIterable<V1,V>MutableMapIterable. groupByUniqueKey(Function<? super V,? extends V1> function)MutableMapIterable<K,V>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<K,V>MutableMapIterable. reject(Predicate2<? super K,? super V> predicate)MutableMapIterable<K,V>MutableMapIterable. select(Predicate2<? super K,? super V> predicate)MutableMapIterable<K,V>MutableMapIterable. tap(Procedure<? super V> procedure)MutableMapIterable<K,V>MutableMapIterable. withAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs)Convenience var-args version of withAllKeyValuesMutableMapIterable<K,V>MutableMapIterable. withAllKeyValues(java.lang.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<K,V>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>MutableMapIterable. withMap(java.util.Map<? extends K,? extends V> map)Similar toMap.putAll(Map), but returns this instead of voiddefault MutableMapIterable<K,V>MutableMapIterable. withMapIterable(MapIterable<? extends K,? extends V> mapIterable)MutableMapIterable<K,V>MutableMapIterable. withoutAllKeys(java.lang.Iterable<? extends K> keys)This method allows mutable, fixed size, and immutable maps the ability to remove elements from their existing elements.MutableMapIterable<K,V>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.sorted Modifier and Type Interface Description interfaceMutableSortedMap<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 MutableMapIterable Modifier and Type Method Description <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 MutableMapIterable Modifier and Type Method Description <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 MutableMapIterable 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 type parameters of type MutableMapIterable Modifier and Type Method Description <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 MutableMapIterable Modifier and Type Field Description private MutableMapIterable<K,V>MutatingAggregationProcedure. mapprivate MutableMapIterable<K,V>NonMutatingAggregationProcedure. mapConstructors in org.eclipse.collections.impl.block.procedure with parameters of type MutableMapIterable Constructor Description MutatingAggregationProcedure(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 MutableMapIterable Modifier and Type Method Description <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 MutableMapIterable Modifier and Type Method Description <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 MutableMapIterable Modifier and Type Method Description static <T,K,R extends MutableMapIterable<K,T>>
java.util.stream.Collector<T,?,R>Collectors2. aggregateBy(Function<? super T,? extends K> groupBy, Function0<? extends T> zeroValueFactory, Function2<? super T,? super T,? extends T> aggregator, java.util.function.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>>
java.util.stream.Collector<T,?,R>Collectors2. groupByUniqueKey(Function<? super T,? extends K> groupBy, java.util.function.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 MutableMapIterable Modifier and Type Method Description static <T,K,V,R extends MutableMapIterable<K,V>>
RFJIterate. aggregateBy(java.lang.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(java.lang.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(java.lang.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, java.util.concurrent.ForkJoinPool executor)static <T,K,V,R extends MutableMapIterable<K,V>>
RFJIterate. aggregateInPlaceBy(java.lang.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(java.lang.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(java.lang.Iterable<T> iterable, Function<? super T,? extends K> groupBy, Function0<? extends V> zeroValueFactory, Procedure2<? super V,? super T> mutatingAggregator, R mutableMap, int batchSize, java.util.concurrent.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 MutableMapIterable Modifier and Type Method Description <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 MutableMapIterable Modifier and Type Class Description classAbstractSynchronizedMapIterable<K,V>A synchronized view of a map.Methods in org.eclipse.collections.impl.map that return MutableMapIterable Modifier and Type Method Description <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)MutableMapIterable<K,V>AbstractSynchronizedMapIterable. tap(Procedure<? super V> procedure)Constructors in org.eclipse.collections.impl.map with parameters of type MutableMapIterable Constructor Description AbstractSynchronizedMapIterable(MutableMapIterable<K,V> delegate)AbstractSynchronizedMapIterable(MutableMapIterable<K,V> delegate, java.lang.Object lock) -
Uses of MutableMapIterable in org.eclipse.collections.impl.map.fixed
Classes in org.eclipse.collections.impl.map.fixed that implement MutableMapIterable 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 MutableMapIterable in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with type parameters of type MutableMapIterable Modifier and Type Method Description <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 MutableMapIterable 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.Fields in org.eclipse.collections.impl.map.mutable declared as MutableMapIterable Modifier and Type Field Description private MutableMapIterable<K,V>SynchronizedMapSerializationProxy. mapMethods in org.eclipse.collections.impl.map.mutable with type parameters of type MutableMapIterable Modifier and Type Method Description <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 MutableMapIterable Modifier and Type Method Description <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 Constructor Description SynchronizedMapSerializationProxy(MutableMapIterable<K,V> map) -
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 MutableMapIterable Modifier and Type Method Description <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 MutableMapIterable 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 type parameters of type MutableMapIterable Modifier and Type Method Description <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 Modifier and Type Method Description MutableMapIterable<K,V>UnmodifiableMutableOrderedMap. asSynchronized() -
Uses of MutableMapIterable in org.eclipse.collections.impl.map.sorted.mutable
Classes in org.eclipse.collections.impl.map.sorted.mutable that implement MutableMapIterable 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 type parameters of type MutableMapIterable Modifier and Type Method Description <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 MutableMapIterable Modifier and Type Method Description MutableMapIterable<V,K>SynchronizedSortedMap. flipUniqueValues()MutableMapIterable<V,K>UnmodifiableTreeMap. flipUniqueValues() -
Uses of MutableMapIterable in org.eclipse.collections.impl.map.strategy.mutable
Classes in org.eclipse.collections.impl.map.strategy.mutable that implement MutableMapIterable 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 MutableMapIterable in org.eclipse.collections.impl.parallel
Methods in org.eclipse.collections.impl.parallel with type parameters of type MutableMapIterable Modifier and Type Method Description static <T,K,V,R extends MutableMapIterable<K,V>>
RParallelIterate. aggregateBy(java.lang.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(java.lang.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(java.lang.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, java.util.concurrent.Executor executor)static <T,K,V,R extends MutableMapIterable<K,V>>
RParallelIterate. aggregateInPlaceBy(java.lang.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(java.lang.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(java.lang.Iterable<T> iterable, Function<? super T,? extends K> groupBy, Function0<? extends V> zeroValueFactory, Procedure2<? super V,? super T> mutatingAggregator, R mutableMap, int batchSize, java.util.concurrent.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 MutableMapIterable Modifier and Type Method Description <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 MutableMapIterable Modifier and Type Method Description <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 MutableMapIterable Modifier and Type Method Description static voidVerify. assertContainsAllKeyValues(java.lang.String mutableMapIterableName, MutableMapIterable<?,?> mutableMapIterable, java.lang.Object... expectedKeyValues)Assert that the givenMutableMapIterablecontains all the given keys and values.static voidVerify. assertContainsAllKeyValues(MutableMapIterable<?,?> mutableMapIterable, java.lang.Object... keyValues)Assert that the givenMutableMapIterablecontains all the given keys and values.static voidVerify. assertContainsKey(java.lang.Object expectedKey, MutableMapIterable<?,?> mutableMapIterable)Assert that the givenMutableMapIterablecontains an entry with the given key.static voidVerify. assertContainsKey(java.lang.String mutableMapIterableName, java.lang.Object expectedKey, MutableMapIterable<?,?> mutableMapIterable)Assert that the givenMutableMapIterablecontains an entry with the given key.static voidVerify. assertContainsKeyValue(java.lang.Object expectedKey, java.lang.Object expectedValue, MutableMapIterable<?,?> mapIterable)Assert that the givenMutableMapIterablecontains an entry with the given key and value.static voidVerify. assertContainsKeyValue(java.lang.String mapIterableName, java.lang.Object expectedKey, java.lang.Object expectedValue, MutableMapIterable<?,?> mutableMapIterable)Assert that the givenMutableMapIterablecontains an entry with the given key and value.static voidVerify. assertEmpty(java.lang.String mutableMapIterableName, MutableMapIterable<?,?> actualMutableMapIterable)Assert that the givenCollectionis empty.static voidVerify. assertEmpty(MutableMapIterable<?,?> actualMutableMapIterable)Assert that the givenMutableMapIterableis empty.private static voidVerify. assertMapContainsKeys(java.lang.String mutableMapIterableName, MutableMapIterable<?,?> mutableMapIterable, java.lang.Object... expectedKeyValues)private static voidVerify. assertMapContainsValues(java.lang.String mutableMapIterableName, MutableMapIterable<?,?> mutableMapIterable, java.lang.Object... expectedKeyValues)static voidVerify. assertNotEmpty(java.lang.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(java.lang.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 MutableMapIterable Modifier and Type Method Description static <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(java.util.ArrayList<T> list, Function<? super T,? extends V> function, R target)static <V,T,R extends MutableMapIterable<V,T>>
RIterate. groupByUniqueKey(java.lang.Iterable<T> iterable, Function<? super T,? extends V> function, R target)static <K,T,R extends MutableMapIterable<K,T>>
RListIterate. groupByUniqueKey(java.util.List<T> list, Function<? super T,? extends K> function, R target)Methods in org.eclipse.collections.impl.utility that return MutableMapIterable Modifier and Type Method Description static <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 MutableMapIterable Modifier and Type Method Description static <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(java.lang.Iterable<T> iterable, Function<? super T,? extends K> function, R target)static <K,T,R extends MutableMapIterable<K,T>>
RIteratorIterate. groupByUniqueKey(java.util.Iterator<T> iterator, Function<? super T,? extends K> function, R target)static <K,T,R extends MutableMapIterable<K,T>>
RRandomAccessListIterate. groupByUniqueKey(java.util.List<T> list, Function<? super T,? extends K> function, R target)
-