Uses of Interface
org.eclipse.collections.api.multimap.list.MutableListMultimap
-
Packages that use MutableListMultimap Package Description org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.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.api.multimap.list This package contains interfaces forListMultimap
.org.eclipse.collections.api.multimap.sortedbag This package contains interfaces forSortedBagMultimap
.org.eclipse.collections.api.multimap.sortedset This package contains interfaces forSortedSetMultimap
.org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl.collector org.eclipse.collections.impl.factory This package contains static utilities for creating mutable and immutable collection factories.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.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.multimap.bag.sorted.mutable org.eclipse.collections.impl.multimap.list This package contains implementations of theListMultimap
interface.org.eclipse.collections.impl.multimap.set.sorted This package contains implementations of theSortedSetMultimap
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface. -
-
Uses of MutableListMultimap in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return MutableListMultimap Modifier and Type Method Description <V> MutableListMultimap<V,T>
MutableList. groupBy(Function<? super T,? extends V> function)
<V> MutableListMultimap<V,T>
MutableList. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
-
Uses of MutableListMultimap in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableListMultimap Modifier and Type Method Description MutableListMultimap<V,K>
MutableOrderedMap. flip()
<V1> MutableListMultimap<V1,V>
MutableOrderedMap. groupBy(Function<? super V,? extends V1> function)
<V1> MutableListMultimap<V1,V>
MutableOrderedMap. groupByEach(Function<? super V,? extends java.lang.Iterable<V1>> function)
-
Uses of MutableListMultimap in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableListMultimap Modifier and Type Method Description <VV> MutableListMultimap<VV,V>
MutableSortedMap. groupBy(Function<? super V,? extends VV> function)
<VV> MutableListMultimap<VV,V>
MutableSortedMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
-
Uses of MutableListMultimap in org.eclipse.collections.api.multimap.list
Methods in org.eclipse.collections.api.multimap.list that return MutableListMultimap Modifier and Type Method Description MutableListMultimap<K,V>
MutableListMultimap. asSynchronized()
<V2> MutableListMultimap<K,V2>
MutableListMultimap. collectValues(Function<? super V,? extends V2> function)
MutableListMultimap<K,V>
MutableListMultimap. newEmpty()
MutableListMultimap<K,V>
MutableListMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
MutableListMultimap<K,V>
MutableListMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)
MutableListMultimap<K,V>
MutableListMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
MutableListMultimap<K,V>
MutableListMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)
MutableListMultimap<K,V>
ListMultimap. toMutable()
default MutableListMultimap<K,V>
MutableListMultimap. withKeyMultiValues(K key, V... values)
default MutableListMultimap<K,V>
MutableListMultimap. withKeyValue(K key, V value)
Puts the key / value combination into the MutableListMultimap and returns the MutableListMultimap (this). -
Uses of MutableListMultimap in org.eclipse.collections.api.multimap.sortedbag
Methods in org.eclipse.collections.api.multimap.sortedbag that return MutableListMultimap Modifier and Type Method Description <V2> MutableListMultimap<K,V2>
MutableSortedBagMultimap. collectValues(Function<? super V,? extends V2> function)
-
Uses of MutableListMultimap in org.eclipse.collections.api.multimap.sortedset
Methods in org.eclipse.collections.api.multimap.sortedset that return MutableListMultimap Modifier and Type Method Description <V2> MutableListMultimap<K,V2>
MutableSortedSetMultimap. collectValues(Function<? super V,? extends V2> function)
-
Uses of MutableListMultimap in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return MutableListMultimap Modifier and Type Method Description <V> MutableListMultimap<V,T>
MutableStack. groupBy(Function<? super T,? extends V> function)
<V> MutableListMultimap<V,T>
MutableStack. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
-
Uses of MutableListMultimap in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type MutableListMultimap Modifier and Type Method Description static <T,K>
java.util.stream.Collector<T,?,MutableListMultimap<K,T>>Collectors2. toListMultimap(Function<? super T,? extends K> groupBy)
Returns the elements as an MutableListMultimap grouping each element using the specified groupBy Function.static <T,K,V>
java.util.stream.Collector<T,?,MutableListMultimap<K,V>>Collectors2. toListMultimap(Function<? super T,? extends K> groupBy, Function<? super T,? extends V> valueFunction)
Returns the elements as an MutableListMultimap grouping each element using the specified groupBy Function and converting each element to the value returned by applying the specified Function valueFunction. -
Uses of MutableListMultimap in org.eclipse.collections.impl.factory
Methods in org.eclipse.collections.impl.factory that return MutableListMultimap Modifier and Type Method Description <K,V>
MutableListMultimap<K,V>Multimaps.MutableMultimaps.MutableListMultimapFactory. empty()
<K,V>
MutableListMultimap<K,V>Multimaps.MutableMultimaps.MutableListMultimapFactory. of()
<K,V>
MutableListMultimap<K,V>Multimaps.MutableMultimaps.MutableListMultimapFactory. of(K key, V value)
<K,V>
MutableListMultimap<K,V>Multimaps.MutableMultimaps.MutableListMultimapFactory. of(K key1, V value1, K key2, V value2)
<K,V>
MutableListMultimap<K,V>Multimaps.MutableMultimaps.MutableListMultimapFactory. of(K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
MutableListMultimap<K,V>Multimaps.MutableMultimaps.MutableListMultimapFactory. with()
<K,V>
MutableListMultimap<K,V>Multimaps.MutableMultimaps.MutableListMultimapFactory. with(K key, V value)
<K,V>
MutableListMultimap<K,V>Multimaps.MutableMultimaps.MutableListMultimapFactory. with(K key1, V value1, K key2, V value2)
<K,V>
MutableListMultimap<K,V>Multimaps.MutableMultimaps.MutableListMultimapFactory. with(K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
MutableListMultimap<K,V>Multimaps.MutableMultimaps.MutableListMultimapFactory. withAll(Multimap<? extends K,? extends V> multimap)
-
Uses of MutableListMultimap in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableListMultimap Modifier and Type Method Description <V> MutableListMultimap<V,T>
AbstractListAdapter. groupBy(Function<? super T,? extends V> function)
<V> MutableListMultimap<V,T>
MultiReaderFastList. groupBy(Function<? super T,? extends V> function)
<V> MutableListMultimap<V,T>
MultiReaderFastList.UntouchableMutableList. groupBy(Function<? super T,? extends V> function)
<V> MutableListMultimap<V,T>
SynchronizedMutableList. groupBy(Function<? super T,? extends V> function)
<V> MutableListMultimap<V,T>
UnmodifiableMutableList. groupBy(Function<? super T,? extends V> function)
<V> MutableListMultimap<V,T>
AbstractListAdapter. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> MutableListMultimap<V,T>
MultiReaderFastList. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> MutableListMultimap<V,T>
MultiReaderFastList.UntouchableMutableList. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> MutableListMultimap<V,T>
SynchronizedMutableList. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> MutableListMultimap<V,T>
UnmodifiableMutableList. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
-
Uses of MutableListMultimap in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableListMultimap Modifier and Type Method Description MutableListMultimap<V,K>
OrderedMapAdapter. flip()
MutableListMultimap<V,K>
UnmodifiableMutableOrderedMap. flip()
<VV> MutableListMultimap<VV,V>
OrderedMapAdapter. groupBy(Function<? super V,? extends VV> function)
<VV> MutableListMultimap<VV,V>
UnmodifiableMutableOrderedMap. groupBy(Function<? super V,? extends VV> function)
<VV> MutableListMultimap<VV,V>
OrderedMapAdapter. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> MutableListMultimap<VV,V>
UnmodifiableMutableOrderedMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
-
Uses of MutableListMultimap in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableListMultimap Modifier and Type Method Description <VV> MutableListMultimap<VV,V>
AbstractMutableSortedMap. groupBy(Function<? super V,? extends VV> function)
<KK> MutableListMultimap<KK,V>
SynchronizedSortedMap. groupBy(Function<? super V,? extends KK> function)
<R> MutableListMultimap<R,V>
UnmodifiableTreeMap. groupBy(Function<? super V,? extends R> function)
<VV> MutableListMultimap<VV,V>
AbstractMutableSortedMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<KK> MutableListMultimap<KK,V>
SynchronizedSortedMap. groupByEach(Function<? super V,? extends java.lang.Iterable<KK>> function)
<R> MutableListMultimap<R,V>
UnmodifiableTreeMap. groupByEach(Function<? super V,? extends java.lang.Iterable<R>> function)
-
Uses of MutableListMultimap in org.eclipse.collections.impl.multimap.bag.sorted.mutable
Methods in org.eclipse.collections.impl.multimap.bag.sorted.mutable that return MutableListMultimap Modifier and Type Method Description <V2> MutableListMultimap<K,V2>
SynchronizedSortedBagMultimap. collectValues(Function<? super V,? extends V2> function)
-
Uses of MutableListMultimap in org.eclipse.collections.impl.multimap.list
Classes in org.eclipse.collections.impl.multimap.list that implement MutableListMultimap Modifier and Type Class Description class
AbstractMutableListMultimap<K,V>
class
FastListMultimap<K,V>
class
MultiReaderFastListMultimap<K,V>
class
SynchronizedListMultimap<K,V>
class
SynchronizedPutFastListMultimap<K,V>
A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.Methods in org.eclipse.collections.impl.multimap.list that return MutableListMultimap Modifier and Type Method Description MutableListMultimap<K,V>
AbstractMutableListMultimap. asSynchronized()
MutableListMultimap<K,V>
SynchronizedListMultimap. asSynchronized()
MutableListMultimap<K,V>
SynchronizedPutFastListMultimap. asSynchronized()
<V2> MutableListMultimap<K,V2>
SynchronizedListMultimap. collectValues(Function<? super V,? extends V2> function)
protected MutableListMultimap<K,V>
SynchronizedListMultimap. getDelegate()
MutableListMultimap<K,V>
SynchronizedListMultimap. newEmpty()
MutableListMultimap<K,V>
SynchronizedListMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
MutableListMultimap<K,V>
SynchronizedListMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)
MutableListMultimap<K,V>
SynchronizedListMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
MutableListMultimap<K,V>
SynchronizedListMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)
MutableListMultimap<K,V>
AbstractMutableListMultimap. toMutable()
MutableListMultimap<K,V>
ImmutableListMultimapImpl. toMutable()
MutableListMultimap<K,V>
SynchronizedListMultimap. toMutable()
MutableListMultimap<K,V>
SynchronizedPutFastListMultimap. toMutable()
MutableListMultimap<K,V>
SynchronizedListMultimap. withKeyMultiValues(K key, V... values)
Methods in org.eclipse.collections.impl.multimap.list with parameters of type MutableListMultimap Modifier and Type Method Description static <K,V>
SynchronizedListMultimap<K,V>SynchronizedListMultimap. of(MutableListMultimap<K,V> multimap)
This method will take a Multimap and wrap it directly in a SynchronizedListMultimap.static <K,V>
SynchronizedListMultimap<K,V>SynchronizedListMultimap. of(MutableListMultimap<K,V> multimap, java.lang.Object lock)
This method will take a Multimap and wrap it directly in a SynchronizedListMultimap.Constructors in org.eclipse.collections.impl.multimap.list with parameters of type MutableListMultimap Constructor Description SynchronizedListMultimap(MutableListMultimap<K,V> multimap)
SynchronizedListMultimap(MutableListMultimap<K,V> multimap, java.lang.Object newLock)
-
Uses of MutableListMultimap in org.eclipse.collections.impl.multimap.set.sorted
Methods in org.eclipse.collections.impl.multimap.set.sorted that return MutableListMultimap Modifier and Type Method Description <V2> MutableListMultimap<K,V2>
SynchronizedSortedSetMultimap. collectValues(Function<? super V,? extends V2> function)
-
Uses of MutableListMultimap in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable that return MutableListMultimap Modifier and Type Method Description <V> MutableListMultimap<V,T>
ArrayStack. groupBy(Function<? super T,? extends V> function)
<V> MutableListMultimap<V,T>
SynchronizedStack. groupBy(Function<? super T,? extends V> function)
<V> MutableListMultimap<V,T>
UnmodifiableStack. groupBy(Function<? super T,? extends V> function)
<V> MutableListMultimap<V,T>
ArrayStack. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> MutableListMultimap<V,T>
SynchronizedStack. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> MutableListMultimap<V,T>
UnmodifiableStack. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
-