Uses of Interface
org.eclipse.collections.api.multimap.set.MutableSetMultimap
-
Packages that use 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 ofMaporg.eclipse.collections.api.multimap.set This package contains interfaces forSetMultimap.org.eclipse.collections.api.multimap.sortedset This package contains interfaces forSortedSetMultimap.org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet.org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMapinterface.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.fixed This package contains implementations of theFixedSizeMapinterface.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMapinterface.org.eclipse.collections.impl.multimap.set This package contains implementations of theSetMultimapinterface.org.eclipse.collections.impl.multimap.set.sorted This package contains implementations of theSortedSetMultimapinterface.org.eclipse.collections.impl.multimap.set.strategy This package contains implementations of theSetMultimapinterface which use a set with user-definedHashingStrategyas their underlying store for the multiple values of a given key.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet.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 java.lang.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 RichIterable<V>> predicate)MutableSetMultimap<K,V>MutableSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)MutableSetMultimap<K,V>MutableSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableSetMultimap<K,V>MutableSetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)MutableSetMultimap<K,V>UnsortedSetMultimap. toMutable()default MutableSetMultimap<K,V>MutableSetMultimap. withKeyMultiValues(K key, V... values)default MutableSetMultimap<K,V>MutableSetMultimap. withKeyValue(K key, V value)Puts the key / value combination into the MutableSetMultimap and returns the MutableSetMultimap (this). -
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 java.lang.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>AbstractMutableBiMap. flip()MutableSetMultimap<V,K>SynchronizedBiMap. flip()MutableSetMultimap<V,K>UnmodifiableBiMap. flip()<VV> MutableSetMultimap<VV,V>AbstractMutableBiMap. groupBy(Function<? super V,? extends VV> function)<V1> MutableSetMultimap<V1,V>SynchronizedBiMap. groupBy(Function<? super V,? extends V1> function)<V1> MutableSetMultimap<V1,V>UnmodifiableBiMap. groupBy(Function<? super V,? extends V1> function)<VV> MutableSetMultimap<VV,V>AbstractMutableBiMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)<V1> MutableSetMultimap<V1,V>SynchronizedBiMap. groupByEach(Function<? super V,? extends java.lang.Iterable<V1>> function)<V1> MutableSetMultimap<V1,V>UnmodifiableBiMap. groupByEach(Function<? super V,? extends java.lang.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>
java.util.stream.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>
java.util.stream.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.fixed
Methods in org.eclipse.collections.impl.map.fixed that return MutableSetMultimap Modifier and Type Method Description MutableSetMultimap<V,K>EmptyMap. flip() -
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()protected MutableSetMultimap<K,V>SynchronizedSetMultimap. getDelegate()MutableSetMultimap<K,V>SynchronizedSetMultimap. newEmpty()MutableSetMultimap<K,V>SynchronizedSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)MutableSetMultimap<K,V>SynchronizedSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)MutableSetMultimap<K,V>SynchronizedSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<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()MutableSetMultimap<K,V>SynchronizedSetMultimap. withKeyMultiValues(K key, V... values)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, java.lang.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, java.lang.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>MultiReaderUnifiedSet.UntouchableMutableSet. 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 java.lang.Iterable<V>> function)<V> MutableSetMultimap<V,T>MultiReaderUnifiedSet.UntouchableMutableSet. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)<V> MutableSetMultimap<V,T>SynchronizedMutableSet. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)<V> MutableSetMultimap<V,T>UnmodifiableMutableSet. groupByEach(Function<? super T,? extends java.lang.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)
-