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 ofMap
org.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 theMutableBiMap
interface.org.eclipse.collections.impl.block.procedure This package contains implementations ofProcedure
andProcedure2
.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.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 theMutableList
interface.org.eclipse.collections.impl.map This package contains implementations of theMapIterable
interface.org.eclipse.collections.impl.map.fixed This package contains implementations of theFixedSizeMap
interface.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 theMutableMap
interface.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 theMutableSortedMap
interface.org.eclipse.collections.impl.map.strategy.mutable This package contains mutable map implementations backed by hashtables that rely onHashingStrategy
s 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 theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.test This package containsSerializeTestHelper
andVerify
classes.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 specifiedtarget
map. -
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.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 interface
MutableBiMap<K,V>
ABiMap
whose 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 interface
ConcurrentMutableMap<K,V>
A ConcurrentMutableMap provides an api which combines and supports both MutableMap and ConcurrentMap.interface
FixedSizeMap<K,V>
A FixedSizeMap is a map that may be mutated, but cannot grow or shrink in size.interface
MutableMap<K,V>
A MutableMap is similar to a JCF Map but adds additional useful internal iterator methods.interface
MutableOrderedMap<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)
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<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.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 interface
MutableSortedMap<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) class
AbstractMutableBiMap<K,V>
private static class
AbstractMutableBiMap.Inverse<K,V>
class
HashBiMap<K,V>
AMutableBiMap
which uses two hash tables as its underlying data store.class
SynchronizedBiMap<K,V>
class
UnmodifiableBiMap<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. map
private MutableMapIterable<K,V>
NonMutatingAggregationProcedure. map
Constructors 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)
-
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 thegroupBy
function and all the elements that map to the same key are aggregated together using theaggregator
function.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 class
AbstractSynchronizedMapIterable<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)
protected MutableMapIterable<K,V>
AbstractSynchronizedMapIterable. getDelegate()
<VV> MutableMapIterable<VV,V>
AbstractSynchronizedMapIterable. groupByUniqueKey(Function<? super V,? extends VV> function)
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) class
AbstractMemoryEfficientMutableMap<K,V>
(package private) class
DoubletonMap<K,V>
(package private) class
EmptyMap<K,V>
(package private) class
SingletonMap<K,V>
(package private) class
TripletonMap<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 class
AbstractMutableMap<K,V>
class
AbstractMutableMapIterable<K,V>
class
ConcurrentHashMap<K,V>
class
ConcurrentHashMapUnsafe<K,V>
class
ConcurrentMutableHashMap<K,V>
Deprecated.since 2.0class
MapAdapter<K,V>
This class provides a MutableMap wrapper around a JDK Collections Map interface instance.class
SynchronizedMutableMap<K,V>
A synchronized view of aMutableMap
.class
UnifiedMap<K,V>
UnifiedMap stores key/value pairs in a single array, where alternate slots are keys and values.class
UnmodifiableMutableMap<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. map
Methods 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 class
OrderedMapAdapter<K,V>
class
UnmodifiableMutableOrderedMap<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 <K1,V1,V2>
MutableMapIterable<K1,V2>UnmodifiableMutableOrderedMap. 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>UnmodifiableMutableOrderedMap. aggregateBy(Function<? super V,? extends KK> groupBy, Function0<? extends VV> zeroValueFactory, Function2<? super VV,? super V,? extends VV> nonMutatingAggregator)
MutableMapIterable<K,V>
UnmodifiableMutableOrderedMap. asSynchronized()
MutableMapIterable<K,V>
UnmodifiableMutableOrderedMap. newEmpty()
-
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 class
AbstractMutableSortedMap<K,V>
class
SortedMapAdapter<K,V>
This class provides a MutableSortedMap wrapper around a JDK Collections SortedMap interface instance.class
SynchronizedSortedMap<K,V>
A synchronized view of a SortedMap.class
TreeSortedMap<K,V>
class
UnmodifiableTreeMap<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 class
UnifiedMapWithHashingStrategy<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 void
Verify. assertContainsAllKeyValues(java.lang.String mutableMapIterableName, MutableMapIterable<?,?> mutableMapIterable, java.lang.Object... expectedKeyValues)
Assert that the givenMutableMapIterable
contains all the given keys and values.static void
Verify. assertContainsAllKeyValues(MutableMapIterable<?,?> mutableMapIterable, java.lang.Object... keyValues)
Assert that the givenMutableMapIterable
contains all the given keys and values.static void
Verify. assertContainsKey(java.lang.Object expectedKey, MutableMapIterable<?,?> mutableMapIterable)
Assert that the givenMutableMapIterable
contains an entry with the given key.static void
Verify. assertContainsKey(java.lang.String mutableMapIterableName, java.lang.Object expectedKey, MutableMapIterable<?,?> mutableMapIterable)
Assert that the givenMutableMapIterable
contains an entry with the given key.static void
Verify. assertContainsKeyValue(java.lang.Object expectedKey, java.lang.Object expectedValue, MutableMapIterable<?,?> mapIterable)
Assert that the givenMutableMapIterable
contains an entry with the given key and value.static void
Verify. assertContainsKeyValue(java.lang.String mapIterableName, java.lang.Object expectedKey, java.lang.Object expectedValue, MutableMapIterable<?,?> mutableMapIterable)
Assert that the givenMutableMapIterable
contains an entry with the given key and value.static void
Verify. assertEmpty(java.lang.String mutableMapIterableName, MutableMapIterable<?,?> actualMutableMapIterable)
Assert that the givenCollection
is empty.static void
Verify. assertEmpty(MutableMapIterable<?,?> actualMutableMapIterable)
Assert that the givenMutableMapIterable
is empty.private static void
Verify. assertMapContainsKeys(java.lang.String mutableMapIterableName, MutableMapIterable<?,?> mutableMapIterable, java.lang.Object... expectedKeyValues)
private static void
Verify. assertMapContainsValues(java.lang.String mutableMapIterableName, MutableMapIterable<?,?> mutableMapIterable, java.lang.Object... expectedKeyValues)
static void
Verify. assertNotEmpty(java.lang.String mutableMapIterableName, MutableMapIterable<?,?> actualMutableMapIterable)
Assert that the givenMutableMapIterable
is not empty.static void
Verify. assertNotEmpty(MutableMapIterable<?,?> actualMutableMapIterable)
Assert that the givenMutableMapIterable
is not empty.static void
Verify. assertSize(int expectedSize, MutableMapIterable<?,?> mutableMapIterable)
Assert the size of the givenMutableMapIterable
.static void
Verify. 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)
-