Uses of Interface
org.eclipse.collections.api.multimap.sortedset.MutableSortedSetMultimap
-
Packages that use MutableSortedSetMultimap Package Description org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.multimap.sortedset This package contains interfaces forSortedSetMultimap
.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.impl.factory This package contains static utilities for creating mutable and immutable collection factories.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.multimap.set.sorted This package contains implementations of theSortedSetMultimap
interface.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet
.org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections. -
-
Uses of MutableSortedSetMultimap in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableSortedSetMultimap Modifier and Type Method Description MutableSortedSetMultimap<V,K>
MutableSortedMap. flip()
-
Uses of MutableSortedSetMultimap in org.eclipse.collections.api.multimap.sortedset
Methods in org.eclipse.collections.api.multimap.sortedset that return MutableSortedSetMultimap Modifier and Type Method Description MutableSortedSetMultimap<K,V>
MutableSortedSetMultimap. asSynchronized()
MutableSortedSetMultimap<K,V>
MutableSortedSetMultimap. newEmpty()
MutableSortedSetMultimap<K,V>
MutableSortedSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
MutableSortedSetMultimap<K,V>
MutableSortedSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)
MutableSortedSetMultimap<K,V>
MutableSortedSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
MutableSortedSetMultimap<K,V>
MutableSortedSetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)
MutableSortedSetMultimap<K,V>
SortedSetMultimap. toMutable()
default MutableSortedSetMultimap<K,V>
MutableSortedSetMultimap. withKeyMultiValues(K key, V... values)
default MutableSortedSetMultimap<K,V>
MutableSortedSetMultimap. withKeyValue(K key, V value)
Puts the key / value combination into the MutableSortedSetMultimap and returns the MutableSortedSetMultimap (this). -
Uses of MutableSortedSetMultimap in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return MutableSortedSetMultimap Modifier and Type Method Description <V> MutableSortedSetMultimap<V,T>
MutableSortedSet. groupBy(Function<? super T,? extends V> function)
<V> MutableSortedSetMultimap<V,T>
MutableSortedSet. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
-
Uses of MutableSortedSetMultimap in org.eclipse.collections.impl.factory
Methods in org.eclipse.collections.impl.factory that return MutableSortedSetMultimap Modifier and Type Method Description <K,V>
MutableSortedSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory. of(java.util.Comparator<V> comparator)
<K,V>
MutableSortedSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory. of(java.util.Comparator<V> comparator, K key, V value)
<K,V>
MutableSortedSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory. of(java.util.Comparator<V> comparator, K key1, V value1, K key2, V value2)
<K,V>
MutableSortedSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory. of(java.util.Comparator<V> comparator, K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
MutableSortedSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory. with(java.util.Comparator<V> comparator)
<K,V>
MutableSortedSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory. with(java.util.Comparator<V> comparator, K key, V value)
<K,V>
MutableSortedSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory. with(java.util.Comparator<V> comparator, K key1, V value1, K key2, V value2)
<K,V>
MutableSortedSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory. with(java.util.Comparator<V> comparator, K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
MutableSortedSetMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory. withAll(Multimap<? extends K,? extends V> multimap)
-
Uses of MutableSortedSetMultimap in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableSortedSetMultimap Modifier and Type Method Description MutableSortedSetMultimap<V,K>
AbstractMutableSortedMap. flip()
MutableSortedSetMultimap<V,K>
SynchronizedSortedMap. flip()
MutableSortedSetMultimap<V,K>
UnmodifiableTreeMap. flip()
-
Uses of MutableSortedSetMultimap in org.eclipse.collections.impl.multimap.set.sorted
Classes in org.eclipse.collections.impl.multimap.set.sorted that implement MutableSortedSetMultimap 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>
Methods in org.eclipse.collections.impl.multimap.set.sorted that return MutableSortedSetMultimap Modifier and Type Method Description MutableSortedSetMultimap<K,V>
SynchronizedPutTreeSortedSetMultimap. asSynchronized()
MutableSortedSetMultimap<K,V>
SynchronizedSortedSetMultimap. asSynchronized()
MutableSortedSetMultimap<K,V>
TreeSortedSetMultimap. asSynchronized()
protected MutableSortedSetMultimap<K,V>
SynchronizedSortedSetMultimap. getDelegate()
MutableSortedSetMultimap<K,V>
SynchronizedSortedSetMultimap. newEmpty()
MutableSortedSetMultimap<K,V>
SynchronizedSortedSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
MutableSortedSetMultimap<K,V>
SynchronizedSortedSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)
MutableSortedSetMultimap<K,V>
SynchronizedSortedSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
MutableSortedSetMultimap<K,V>
SynchronizedSortedSetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)
MutableSortedSetMultimap<K,V>
ImmutableSortedSetMultimapImpl. toMutable()
MutableSortedSetMultimap<K,V>
SynchronizedPutTreeSortedSetMultimap. toMutable()
MutableSortedSetMultimap<K,V>
SynchronizedSortedSetMultimap. toMutable()
MutableSortedSetMultimap<K,V>
TreeSortedSetMultimap. toMutable()
MutableSortedSetMultimap<K,V>
SynchronizedSortedSetMultimap. withKeyMultiValues(K key, V... values)
Methods in org.eclipse.collections.impl.multimap.set.sorted with parameters of type MutableSortedSetMultimap Modifier and Type Method Description static <K,V>
SynchronizedSortedSetMultimap<K,V>SynchronizedSortedSetMultimap. of(MutableSortedSetMultimap<K,V> multimap)
This method will take a Multimap and wrap it directly in a SynchronizedSortedSetMultimap.static <K,V>
SynchronizedSortedSetMultimap<K,V>SynchronizedSortedSetMultimap. of(MutableSortedSetMultimap<K,V> multimap, java.lang.Object lock)
This method will take a Multimap and wrap it directly in a SynchronizedSortedSetMultimap.Constructors in org.eclipse.collections.impl.multimap.set.sorted with parameters of type MutableSortedSetMultimap Constructor Description SynchronizedSortedSetMultimap(MutableSortedSetMultimap<K,V> multimap)
SynchronizedSortedSetMultimap(MutableSortedSetMultimap<K,V> multimap, java.lang.Object newLock)
-
Uses of MutableSortedSetMultimap in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableSortedSetMultimap Modifier and Type Method Description <V> MutableSortedSetMultimap<V,T>
SynchronizedSortedSet. groupBy(Function<? super T,? extends V> function)
<V> MutableSortedSetMultimap<V,T>
UnmodifiableSortedSet. groupBy(Function<? super T,? extends V> function)
<V> MutableSortedSetMultimap<V,T>
SynchronizedSortedSet. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> MutableSortedSetMultimap<V,T>
UnmodifiableSortedSet. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
-
Uses of MutableSortedSetMultimap in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableSortedSetMultimap Modifier and Type Method Description static <K,V>
MutableSortedSetMultimap<V,K>MapIterate. flip(SortedMapIterable<K,V> iMap)
-