Uses of Interface
org.eclipse.collections.api.multimap.set.MutableSetMultimap
| Package | Description |
|---|---|
| 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 of
Map |
| org.eclipse.collections.api.multimap.set |
This package contains interfaces for
SetMultimap. |
| org.eclipse.collections.api.multimap.sortedset |
This package contains interfaces for
SortedSetMultimap. |
| org.eclipse.collections.api.set |
This package contains interfaces for set API which enhance the performance and functionality of
Set. |
| org.eclipse.collections.impl.bimap.mutable |
This package contains implementations of the
MutableBiMap interface. |
| 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.map.mutable |
This package contains implementations of the
MutableMap interface. |
| org.eclipse.collections.impl.multimap.set |
This package contains implementations of the
SetMultimap interface. |
| org.eclipse.collections.impl.multimap.set.sorted |
This package contains implementations of the
SortedSetMultimap interface. |
| org.eclipse.collections.impl.multimap.set.strategy |
This package contains implementations of the
SetMultimap interface which use a set with user-defined HashingStrategy as their underlying store for the multiple values of a given key. |
| org.eclipse.collections.impl.set.mutable |
This package package contains implementations of
MutableSet. |
| org.eclipse.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
-
Uses of MutableSetMultimap in org.eclipse.collections.api.bimap
Methods in org.eclipse.collections.api.bimap that return MutableSetMultimap Modifier and Type Method Description MutableSetMultimap<V,K>MutableBiMap. flip()<V1> MutableSetMultimap<V1,V>MutableBiMap. groupBy(Function<? super V,? extends V1> function)<V1> MutableSetMultimap<V1,V>MutableBiMap. groupByEach(Function<? super V,? extends Iterable<V1>> function) -
Uses of MutableSetMultimap in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableSetMultimap Modifier and Type Method Description MutableSetMultimap<V,K>MutableMap. flip() -
Uses of MutableSetMultimap in org.eclipse.collections.api.multimap.set
Methods in org.eclipse.collections.api.multimap.set that return MutableSetMultimap Modifier and Type Method Description MutableSetMultimap<K,V>MutableSetMultimap. asSynchronized()MutableSetMultimap<V,K>MutableSetMultimap. flip()MutableSetMultimap<K,V>MutableSetMultimap. newEmpty()MutableSetMultimap<K,V>MutableSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate)MutableSetMultimap<K,V>MutableSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)MutableSetMultimap<K,V>MutableSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate)MutableSetMultimap<K,V>MutableSetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)MutableSetMultimap<K,V>UnsortedSetMultimap. toMutable() -
Uses of MutableSetMultimap in org.eclipse.collections.api.multimap.sortedset
Methods in org.eclipse.collections.api.multimap.sortedset that return MutableSetMultimap Modifier and Type Method Description MutableSetMultimap<V,K>MutableSortedSetMultimap. flip() -
Uses of MutableSetMultimap in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return MutableSetMultimap Modifier and Type Method Description <V> MutableSetMultimap<V,T>MutableSet. groupBy(Function<? super T,? extends V> function)<V> MutableSetMultimap<V,T>MutableSet. groupByEach(Function<? super T,? extends Iterable<V>> function) -
Uses of MutableSetMultimap in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return MutableSetMultimap Modifier and Type Method Description MutableSetMultimap<V,K>SynchronizedBiMap. flip()MutableSetMultimap<V,K>UnmodifiableBiMap. flip()<V1> MutableSetMultimap<V1,V>SynchronizedBiMap. groupBy(Function<? super V,? extends V1> function)<V1> MutableSetMultimap<V1,V>UnmodifiableBiMap. groupBy(Function<? super V,? extends V1> function)<V1> MutableSetMultimap<V1,V>SynchronizedBiMap. groupByEach(Function<? super V,? extends Iterable<V1>> function)<V1> MutableSetMultimap<V1,V>UnmodifiableBiMap. groupByEach(Function<? super V,? extends Iterable<V1>> function) -
Uses of MutableSetMultimap in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type MutableSetMultimap Modifier and Type Method Description static <T, K> Collector<T,?,MutableSetMultimap<K,T>>Collectors2. toSetMultimap(Function<? super T,? extends K> groupBy)Returns the elements as an MutableSetMultimap grouping each element using the specified groupBy Function.static <T, K, V> Collector<T,?,MutableSetMultimap<K,V>>Collectors2. toSetMultimap(Function<? super T,? extends K> groupBy, Function<? super T,? extends V> valueFunction)Returns the elements as an MutableSetMultimap grouping each element using the specified groupBy Function and converting each element to the value returned by applying the specified Function valueFunction. -
Uses of MutableSetMultimap in org.eclipse.collections.impl.factory
Methods in org.eclipse.collections.impl.factory that return MutableSetMultimap Modifier and Type Method Description <K, V> MutableSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSetMultimapFactory. empty()<K, V> MutableSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSetMultimapFactory. of()<K, V> MutableSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSetMultimapFactory. of(K key, V value)<K, V> MutableSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSetMultimapFactory. of(K key1, V value1, K key2, V value2)<K, V> MutableSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSetMultimapFactory. of(K key1, V value1, K key2, V value2, K key3, V value3)<K, V> MutableSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSetMultimapFactory. with()<K, V> MutableSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSetMultimapFactory. with(K key, V value)<K, V> MutableSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSetMultimapFactory. with(K key1, V value1, K key2, V value2)<K, V> MutableSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSetMultimapFactory. with(K key1, V value1, K key2, V value2, K key3, V value3)<K, V> MutableSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSetMultimapFactory. withAll(Multimap<? extends K,? extends V> multimap) -
Uses of MutableSetMultimap in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable that return MutableSetMultimap Modifier and Type Method Description MutableSetMultimap<V,K>AbstractMutableMap. flip()MutableSetMultimap<V,K>SynchronizedMutableMap. flip()MutableSetMultimap<V,K>UnmodifiableMutableMap. flip() -
Uses of MutableSetMultimap in org.eclipse.collections.impl.multimap.set
Classes in org.eclipse.collections.impl.multimap.set that implement MutableSetMultimap Modifier and Type Class Description classAbstractMutableSetMultimap<K,V>classMultiReaderUnifiedSetMultimap<K,V>classSynchronizedPutUnifiedSetMultimap<K,V>A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.classSynchronizedSetMultimap<K,V>classUnifiedSetMultimap<K,V>Methods in org.eclipse.collections.impl.multimap.set that return MutableSetMultimap Modifier and Type Method Description MutableSetMultimap<K,V>AbstractMutableSetMultimap. asSynchronized()MutableSetMultimap<K,V>SynchronizedPutUnifiedSetMultimap. asSynchronized()MutableSetMultimap<K,V>SynchronizedSetMultimap. asSynchronized()MutableSetMultimap<V,K>MultiReaderUnifiedSetMultimap. flip()MutableSetMultimap<V,K>SynchronizedPutUnifiedSetMultimap. flip()MutableSetMultimap<V,K>SynchronizedSetMultimap. flip()MutableSetMultimap<V,K>UnifiedSetMultimap. flip()MutableSetMultimap<K,V>SynchronizedSetMultimap. newEmpty()MutableSetMultimap<K,V>SynchronizedSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate)MutableSetMultimap<K,V>SynchronizedSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)MutableSetMultimap<K,V>SynchronizedSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate)MutableSetMultimap<K,V>SynchronizedSetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)MutableSetMultimap<K,V>AbstractMutableSetMultimap. toMutable()MutableSetMultimap<K,V>ImmutableSetMultimapImpl. toMutable()MutableSetMultimap<K,V>SynchronizedPutUnifiedSetMultimap. toMutable()MutableSetMultimap<K,V>SynchronizedSetMultimap. toMutable()Methods in org.eclipse.collections.impl.multimap.set with parameters of type MutableSetMultimap Modifier and Type Method Description static <K, V> SynchronizedSetMultimap<K,V>SynchronizedSetMultimap. of(MutableSetMultimap<K,V> multimap)This method will take a Multimap and wrap it directly in a SynchronizedSetMultimap.static <K, V> SynchronizedSetMultimap<K,V>SynchronizedSetMultimap. of(MutableSetMultimap<K,V> multimap, Object lock)This method will take a Multimap and wrap it directly in a SynchronizedSetMultimap.Constructors in org.eclipse.collections.impl.multimap.set with parameters of type MutableSetMultimap Constructor Description SynchronizedSetMultimap(MutableSetMultimap<K,V> multimap)SynchronizedSetMultimap(MutableSetMultimap<K,V> multimap, Object newLock) -
Uses of MutableSetMultimap in org.eclipse.collections.impl.multimap.set.sorted
Methods in org.eclipse.collections.impl.multimap.set.sorted that return MutableSetMultimap Modifier and Type Method Description MutableSetMultimap<V,K>SynchronizedPutTreeSortedSetMultimap. flip()MutableSetMultimap<V,K>SynchronizedSortedSetMultimap. flip()MutableSetMultimap<V,K>TreeSortedSetMultimap. flip() -
Uses of MutableSetMultimap in org.eclipse.collections.impl.multimap.set.strategy
Classes in org.eclipse.collections.impl.multimap.set.strategy that implement MutableSetMultimap Modifier and Type Class Description classUnifiedSetWithHashingStrategyMultimap<K,V>Methods in org.eclipse.collections.impl.multimap.set.strategy that return MutableSetMultimap Modifier and Type Method Description MutableSetMultimap<V,K>UnifiedSetWithHashingStrategyMultimap. flip() -
Uses of MutableSetMultimap in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable that return MutableSetMultimap Modifier and Type Method Description <V> MutableSetMultimap<V,T>MultiReaderUnifiedSet. groupBy(Function<? super T,? extends V> function)<V> MutableSetMultimap<V,T>SynchronizedMutableSet. groupBy(Function<? super T,? extends V> function)<V> MutableSetMultimap<V,T>UnmodifiableMutableSet. groupBy(Function<? super T,? extends V> function)<V> MutableSetMultimap<V,T>MultiReaderUnifiedSet. groupByEach(Function<? super T,? extends Iterable<V>> function)<V> MutableSetMultimap<V,T>SynchronizedMutableSet. groupByEach(Function<? super T,? extends Iterable<V>> function)<V> MutableSetMultimap<V,T>UnmodifiableMutableSet. groupByEach(Function<? super T,? extends Iterable<V>> function) -
Uses of MutableSetMultimap in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableSetMultimap Modifier and Type Method Description static <K, V> MutableSetMultimap<V,K>MapIterate. flip(MapIterable<K,V> iMap)