Uses of Interface
org.eclipse.collections.api.multimap.list.MutableListMultimap
Packages that use MutableListMultimap
Package
Description
This package contains interfaces for list API which enhance the performance and functionality of
List
.This package contains interfaces for map API which enhance the performance and functionality of
Map
This package contains mutable and immutable sorted map interfaces.
This package contains interfaces for
ListMultimap
.This package contains interfaces for
SortedBagMultimap
.This package contains interfaces for
SortedSetMultimap
.This package contains interfaces for stack API.
This package contains static utilities for creating mutable and immutable collection factories.
This package contains implementations of the
MutableList
interface.This package contains implementations of the
MutableSortedMap
interface.This package contains implementations of the
ListMultimap
interface.This package contains implementations of the
SortedSetMultimap
interface.This package contains implementations of the
MutableStack
interface.-
Uses of MutableListMultimap in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return MutableListMultimapModifier and TypeMethodDescription<V> MutableListMultimap<V,
T> <V> MutableListMultimap<V,
T> MutableList.groupByEach
(Function<? super T, ? extends Iterable<V>> function) -
Uses of MutableListMultimap in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableListMultimapModifier and TypeMethodDescriptionMutableOrderedMap.flip()
<V1> MutableListMultimap<V1,
V> <V1> MutableListMultimap<V1,
V> MutableOrderedMap.groupByEach
(Function<? super V, ? extends Iterable<V1>> function) -
Uses of MutableListMultimap in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableListMultimapModifier and TypeMethodDescription<VV> MutableListMultimap<VV,
V> <VV> MutableListMultimap<VV,
V> MutableSortedMap.groupByEach
(Function<? super V, ? extends Iterable<VV>> function) -
Uses of MutableListMultimap in org.eclipse.collections.api.multimap.list
Methods in org.eclipse.collections.api.multimap.list that return MutableListMultimapModifier and TypeMethodDescriptionMutableListMultimap.asSynchronized()
<V2> MutableListMultimap<K,
V2> MutableListMultimap.collectValues
(Function<? super V, ? extends V2> function) MutableListMultimap.newEmpty()
MutableListMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableListMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) MutableListMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableListMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) 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 MutableListMultimapModifier and TypeMethodDescription<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 MutableListMultimapModifier and TypeMethodDescription<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 MutableListMultimapModifier and TypeMethodDescription<V> MutableListMultimap<V,
T> <V> MutableListMultimap<V,
T> MutableStack.groupByEach
(Function<? super T, ? extends 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 MutableListMultimapModifier and TypeMethodDescriptionstatic <T,
K> 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> 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 MutableListMultimapModifier and TypeMethodDescription<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 MutableListMultimapModifier and TypeMethodDescription<V> MutableListMultimap<V,
T> <V> MutableListMultimap<V,
T> <V> MutableListMultimap<V,
T> <V> MutableListMultimap<V,
T> <V> MutableListMultimap<V,
T> AbstractListAdapter.groupByEach
(Function<? super T, ? extends Iterable<V>> function) <V> MutableListMultimap<V,
T> MultiReaderFastList.groupByEach
(Function<? super T, ? extends Iterable<V>> function) <V> MutableListMultimap<V,
T> SynchronizedMutableList.groupByEach
(Function<? super T, ? extends Iterable<V>> function) <V> MutableListMultimap<V,
T> UnmodifiableMutableList.groupByEach
(Function<? super T, ? extends 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 MutableListMultimapModifier and TypeMethodDescriptionOrderedMapAdapter.flip()
UnmodifiableMutableOrderedMap.flip()
<VV> MutableListMultimap<VV,
V> <VV> MutableListMultimap<VV,
V> <VV> MutableListMultimap<VV,
V> OrderedMapAdapter.groupByEach
(Function<? super V, ? extends Iterable<VV>> function) <VV> MutableListMultimap<VV,
V> UnmodifiableMutableOrderedMap.groupByEach
(Function<? super V, ? extends 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 MutableListMultimapModifier and TypeMethodDescription<VV> MutableListMultimap<VV,
V> <KK> MutableListMultimap<KK,
V> <R> MutableListMultimap<R,
V> <VV> MutableListMultimap<VV,
V> AbstractMutableSortedMap.groupByEach
(Function<? super V, ? extends Iterable<VV>> function) <KK> MutableListMultimap<KK,
V> SynchronizedSortedMap.groupByEach
(Function<? super V, ? extends Iterable<KK>> function) <R> MutableListMultimap<R,
V> UnmodifiableTreeMap.groupByEach
(Function<? super V, ? extends 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 MutableListMultimapModifier and TypeMethodDescription<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 MutableListMultimapModifier and TypeClassDescriptionclass
final class
FastListMultimap<K,
V> final class
class
final class
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 MutableListMultimapModifier and TypeMethodDescriptionAbstractMutableListMultimap.asSynchronized()
SynchronizedListMultimap.asSynchronized()
SynchronizedPutFastListMultimap.asSynchronized()
<V2> MutableListMultimap<K,
V2> SynchronizedListMultimap.collectValues
(Function<? super V, ? extends V2> function) SynchronizedListMultimap.newEmpty()
SynchronizedListMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedListMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) SynchronizedListMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedListMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) AbstractMutableListMultimap.toMutable()
ImmutableListMultimapImpl.toMutable()
SynchronizedListMultimap.toMutable()
SynchronizedPutFastListMultimap.toMutable()
SynchronizedListMultimap.withKeyMultiValues
(K key, V... values) Methods in org.eclipse.collections.impl.multimap.list with parameters of type MutableListMultimapModifier and TypeMethodDescriptionstatic <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, 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 MutableListMultimapModifierConstructorDescriptionSynchronizedListMultimap
(MutableListMultimap<K, V> multimap) SynchronizedListMultimap
(MutableListMultimap<K, V> multimap, Object newLock) -
Uses of MutableListMultimap in org.eclipse.collections.impl.multimap.set.sorted
Methods in org.eclipse.collections.impl.multimap.set.sorted that return MutableListMultimapModifier and TypeMethodDescription<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 MutableListMultimapModifier and TypeMethodDescription<V> MutableListMultimap<V,
T> <V> MutableListMultimap<V,
T> <V> MutableListMultimap<V,
T> <V> MutableListMultimap<V,
T> ArrayStack.groupByEach
(Function<? super T, ? extends Iterable<V>> function) <V> MutableListMultimap<V,
T> SynchronizedStack.groupByEach
(Function<? super T, ? extends Iterable<V>> function) <V> MutableListMultimap<V,
T> UnmodifiableStack.groupByEach
(Function<? super T, ? extends Iterable<V>> function)