Uses of Interface
org.eclipse.collections.api.multimap.set.MutableSetIterableMultimap
-
Packages that use MutableSetIterableMultimap Package Description org.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.multimap.set This package contains implementations of theSetMultimap
interface.org.eclipse.collections.impl.multimap.set.sorted This package contains implementations of theSortedSetMultimap
interface.org.eclipse.collections.impl.multimap.set.strategy This package contains implementations of theSetMultimap
interface which use a set with user-definedHashingStrategy
as their underlying store for the multiple values of a given key. -
-
Uses of MutableSetIterableMultimap in org.eclipse.collections.api.multimap.set
Subinterfaces of MutableSetIterableMultimap in org.eclipse.collections.api.multimap.set Modifier and Type Interface Description interface
MutableSetMultimap<K,V>
Methods in org.eclipse.collections.api.multimap.set that return MutableSetIterableMultimap Modifier and Type Method Description MutableSetIterableMultimap<K,V>
MutableSetIterableMultimap. asSynchronized()
MutableSetIterableMultimap<V,K>
MutableSetIterableMultimap. flip()
MutableSetIterableMultimap<K,V>
MutableSetIterableMultimap. newEmpty()
MutableSetIterableMultimap<K,V>
MutableSetIterableMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
MutableSetIterableMultimap<K,V>
MutableSetIterableMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)
MutableSetIterableMultimap<K,V>
MutableSetIterableMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
MutableSetIterableMultimap<K,V>
MutableSetIterableMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)
default MutableSetIterableMultimap<K,V>
MutableSetIterableMultimap. withKeyMultiValues(K key, V... values)
default MutableSetIterableMultimap<K,V>
MutableSetIterableMultimap. withKeyValue(K key, V value)
Puts the key / value combination into the MutableSetIterableMultimap and returns the MutableSetIterableMultimap (this). -
Uses of MutableSetIterableMultimap in org.eclipse.collections.api.multimap.sortedset
Subinterfaces of MutableSetIterableMultimap in org.eclipse.collections.api.multimap.sortedset Modifier and Type Interface Description interface
MutableSortedSetMultimap<K,V>
-
Uses of MutableSetIterableMultimap in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return MutableSetIterableMultimap Modifier and Type Method Description <V> MutableSetIterableMultimap<V,T>
MutableSetIterable. groupBy(Function<? super T,? extends V> function)
<V> MutableSetIterableMultimap<V,T>
MutableSetIterable. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
-
Uses of MutableSetIterableMultimap in org.eclipse.collections.impl.multimap.set
Classes in org.eclipse.collections.impl.multimap.set that implement MutableSetIterableMultimap Modifier and Type Class Description class
AbstractMutableSetMultimap<K,V>
class
MultiReaderUnifiedSetMultimap<K,V>
class
SynchronizedPutUnifiedSetMultimap<K,V>
A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.class
SynchronizedSetMultimap<K,V>
class
UnifiedSetMultimap<K,V>
-
Uses of MutableSetIterableMultimap in org.eclipse.collections.impl.multimap.set.sorted
Classes in org.eclipse.collections.impl.multimap.set.sorted that implement MutableSetIterableMultimap Modifier and Type Class Description class
SynchronizedPutTreeSortedSetMultimap<K,V>
A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.class
SynchronizedSortedSetMultimap<K,V>
class
TreeSortedSetMultimap<K,V>
-
Uses of MutableSetIterableMultimap in org.eclipse.collections.impl.multimap.set.strategy
Classes in org.eclipse.collections.impl.multimap.set.strategy that implement MutableSetIterableMultimap Modifier and Type Class Description class
UnifiedSetWithHashingStrategyMultimap<K,V>
-