Uses of Interface
org.eclipse.collections.api.multimap.sortedbag.MutableSortedBagMultimap
-
Packages that use MutableSortedBagMultimap Package Description org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.multimap.sortedbag This package contains interfaces forSortedBagMultimap
.org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.factory This package contains static utilities for creating mutable and immutable collection factories.org.eclipse.collections.impl.multimap.bag This package contains implementations of theBagMultimap
interface.org.eclipse.collections.impl.multimap.bag.sorted org.eclipse.collections.impl.multimap.bag.sorted.immutable org.eclipse.collections.impl.multimap.bag.sorted.mutable -
-
Uses of MutableSortedBagMultimap in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableSortedBagMultimap Modifier and Type Method Description <V> MutableSortedBagMultimap<V,T>
MutableSortedBag. groupBy(Function<? super T,? extends V> function)
<V> MutableSortedBagMultimap<V,T>
MutableSortedBag. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
-
Uses of MutableSortedBagMultimap in org.eclipse.collections.api.multimap.sortedbag
Methods in org.eclipse.collections.api.multimap.sortedbag that return MutableSortedBagMultimap Modifier and Type Method Description MutableSortedBagMultimap<K,V>
MutableSortedBagMultimap. asSynchronized()
MutableSortedBagMultimap<K,V>
MutableSortedBagMultimap. newEmpty()
MutableSortedBagMultimap<K,V>
MutableSortedBagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
MutableSortedBagMultimap<K,V>
MutableSortedBagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)
MutableSortedBagMultimap<K,V>
MutableSortedBagMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
MutableSortedBagMultimap<K,V>
MutableSortedBagMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)
MutableSortedBagMultimap<K,V>
SortedBagMultimap. toMutable()
default MutableSortedBagMultimap<K,V>
MutableSortedBagMultimap. withKeyMultiValues(K key, V... values)
default MutableSortedBagMultimap<K,V>
MutableSortedBagMultimap. withKeyValue(K key, V value)
Puts the key / value combination into the MutableSortedBagMultimap and returns the MutableSortedBagMultimap (this). -
Uses of MutableSortedBagMultimap in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableSortedBagMultimap Modifier and Type Method Description <V> MutableSortedBagMultimap<V,T>
SynchronizedSortedBag. groupBy(Function<? super T,? extends V> function)
<V> MutableSortedBagMultimap<V,T>
UnmodifiableSortedBag. groupBy(Function<? super T,? extends V> function)
<V> MutableSortedBagMultimap<V,T>
SynchronizedSortedBag. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> MutableSortedBagMultimap<V,T>
UnmodifiableSortedBag. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
-
Uses of MutableSortedBagMultimap in org.eclipse.collections.impl.factory
Methods in org.eclipse.collections.impl.factory that return MutableSortedBagMultimap Modifier and Type Method Description <K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. empty()
<K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. empty(java.util.Comparator<? super V> comparator)
<K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. of()
<K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. of(java.util.Comparator<? super V> comparator)
<K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. of(java.util.Comparator<? super V> comparator, K key, V value)
<K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. of(java.util.Comparator<? super V> comparator, K key1, V value1, K key2, V value2)
<K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. of(java.util.Comparator<? super V> comparator, K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. of(K key, V value)
<K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. of(K key1, V value1, K key2, V value2)
<K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. of(K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. with()
<K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. with(java.util.Comparator<? super V> comparator)
<K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. with(java.util.Comparator<? super V> comparator, K key, V value)
<K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. with(java.util.Comparator<? super V> comparator, K key1, V value1, K key2, V value2)
<K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. with(java.util.Comparator<? super V> comparator, K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. with(K key, V value)
<K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. with(K key1, V value1, K key2, V value2)
<K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. with(K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
MutableSortedBagMultimap<K,V>Multimaps.MutableMultimaps.MutableSortedBagMultimapFactory. withAll(Multimap<? extends K,? extends V> multimap)
-
Uses of MutableSortedBagMultimap in org.eclipse.collections.impl.multimap.bag
Classes in org.eclipse.collections.impl.multimap.bag that implement MutableSortedBagMultimap Modifier and Type Class Description class
TreeBagMultimap<K,V>
Deprecated.in 5.0.Methods in org.eclipse.collections.impl.multimap.bag that return MutableSortedBagMultimap Modifier and Type Method Description MutableSortedBagMultimap<K,V>
TreeBagMultimap. asSynchronized()
Deprecated.MutableSortedBagMultimap<K,V>
TreeBagMultimap. toMutable()
Deprecated. -
Uses of MutableSortedBagMultimap in org.eclipse.collections.impl.multimap.bag.sorted
Classes in org.eclipse.collections.impl.multimap.bag.sorted that implement MutableSortedBagMultimap Modifier and Type Class Description class
TreeBagMultimap<K,V>
Deprecated.in 7.0.Methods in org.eclipse.collections.impl.multimap.bag.sorted that return MutableSortedBagMultimap Modifier and Type Method Description MutableSortedBagMultimap<K,V>
TreeBagMultimap. asSynchronized()
Deprecated.MutableSortedBagMultimap<K,V>
TreeBagMultimap. toMutable()
Deprecated. -
Uses of MutableSortedBagMultimap in org.eclipse.collections.impl.multimap.bag.sorted.immutable
Methods in org.eclipse.collections.impl.multimap.bag.sorted.immutable that return MutableSortedBagMultimap Modifier and Type Method Description MutableSortedBagMultimap<K,V>
ImmutableSortedBagMultimapImpl. toMutable()
-
Uses of MutableSortedBagMultimap in org.eclipse.collections.impl.multimap.bag.sorted.mutable
Classes in org.eclipse.collections.impl.multimap.bag.sorted.mutable that implement MutableSortedBagMultimap Modifier and Type Class Description class
SynchronizedSortedBagMultimap<K,V>
class
TreeBagMultimap<K,V>
Methods in org.eclipse.collections.impl.multimap.bag.sorted.mutable that return MutableSortedBagMultimap Modifier and Type Method Description MutableSortedBagMultimap<K,V>
SynchronizedSortedBagMultimap. asSynchronized()
MutableSortedBagMultimap<K,V>
TreeBagMultimap. asSynchronized()
protected MutableSortedBagMultimap<K,V>
SynchronizedSortedBagMultimap. getDelegate()
MutableSortedBagMultimap<K,V>
SynchronizedSortedBagMultimap. newEmpty()
MutableSortedBagMultimap<K,V>
SynchronizedSortedBagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
MutableSortedBagMultimap<K,V>
SynchronizedSortedBagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)
MutableSortedBagMultimap<K,V>
SynchronizedSortedBagMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
MutableSortedBagMultimap<K,V>
SynchronizedSortedBagMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)
MutableSortedBagMultimap<K,V>
SynchronizedSortedBagMultimap. toMutable()
MutableSortedBagMultimap<K,V>
TreeBagMultimap. toMutable()
MutableSortedBagMultimap<K,V>
SynchronizedSortedBagMultimap. withKeyMultiValues(K key, V... values)
Methods in org.eclipse.collections.impl.multimap.bag.sorted.mutable with parameters of type MutableSortedBagMultimap Modifier and Type Method Description static <K,V>
SynchronizedSortedBagMultimap<K,V>SynchronizedSortedBagMultimap. of(MutableSortedBagMultimap<K,V> multimap)
This method will take a Multimap and wrap it directly in a SynchronizedSortedBagMultimap.static <K,V>
SynchronizedSortedBagMultimap<K,V>SynchronizedSortedBagMultimap. of(MutableSortedBagMultimap<K,V> multimap, java.lang.Object lock)
This method will take a Multimap and wrap it directly in a SynchronizedSortedBagMultimap.Constructors in org.eclipse.collections.impl.multimap.bag.sorted.mutable with parameters of type MutableSortedBagMultimap Constructor Description SynchronizedSortedBagMultimap(MutableSortedBagMultimap<K,V> multimap)
SynchronizedSortedBagMultimap(MutableSortedBagMultimap<K,V> multimap, java.lang.Object newLock)
-