Uses of Interface
org.eclipse.collections.api.multimap.sortedset.MutableSortedSetMultimap
Package
Description
This package contains mutable and immutable sorted map interfaces.
This package contains interfaces for
SortedSetMultimap
.This package contains interfaces for sorted set API.
This package contains static utilities for creating mutable and immutable collection factories.
This package contains implementations of the
MutableSortedMap
interface.This package contains implementations of the
SortedSetMultimap
interface.This package contains implementations of
MutableSortedSet
.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
-
Uses of MutableSortedSetMultimap in org.eclipse.collections.api.multimap.sortedset
Modifier and TypeMethodDescriptionMutableSortedSetMultimap.asSynchronized()
MutableSortedSetMultimap.newEmpty()
MutableSortedSetMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSortedSetMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) MutableSortedSetMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSortedSetMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) 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
Modifier and TypeMethodDescription<V> MutableSortedSetMultimap<V,
T> <V> MutableSortedSetMultimap<V,
T> MutableSortedSet.groupByEach
(Function<? super T, ? extends Iterable<V>> function) -
Uses of MutableSortedSetMultimap in org.eclipse.collections.impl.factory
Modifier and TypeMethodDescription<K,
V> MutableSortedSetMultimap<K, V> Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory.of
(Comparator<V> comparator) <K,
V> MutableSortedSetMultimap<K, V> Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory.of
(Comparator<V> comparator, K key, V value) <K,
V> MutableSortedSetMultimap<K, V> Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory.of
(Comparator<V> comparator, K key1, V value1, K key2, V value2) <K,
V> MutableSortedSetMultimap<K, V> Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory.of
(Comparator<V> comparator, K key1, V value1, K key2, V value2, K key3, V value3) <K,
V> MutableSortedSetMultimap<K, V> Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory.with
(Comparator<V> comparator) <K,
V> MutableSortedSetMultimap<K, V> Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory.with
(Comparator<V> comparator, K key, V value) <K,
V> MutableSortedSetMultimap<K, V> Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory.with
(Comparator<V> comparator, K key1, V value1, K key2, V value2) <K,
V> MutableSortedSetMultimap<K, V> Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory.with
(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
-
Uses of MutableSortedSetMultimap in org.eclipse.collections.impl.multimap.set.sorted
Modifier and TypeClassDescriptionfinal class
A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.class
final class
Modifier and TypeMethodDescriptionSynchronizedPutTreeSortedSetMultimap.asSynchronized()
SynchronizedSortedSetMultimap.asSynchronized()
TreeSortedSetMultimap.asSynchronized()
SynchronizedSortedSetMultimap.newEmpty()
SynchronizedSortedSetMultimap.rejectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedSortedSetMultimap.rejectKeysValues
(Predicate2<? super K, ? super V> predicate) SynchronizedSortedSetMultimap.selectKeysMultiValues
(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedSortedSetMultimap.selectKeysValues
(Predicate2<? super K, ? super V> predicate) ImmutableSortedSetMultimapImpl.toMutable()
SynchronizedPutTreeSortedSetMultimap.toMutable()
SynchronizedSortedSetMultimap.toMutable()
TreeSortedSetMultimap.toMutable()
SynchronizedSortedSetMultimap.withKeyMultiValues
(K key, V... values) Modifier and TypeMethodDescriptionstatic <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, Object lock) This method will take a Multimap and wrap it directly in a SynchronizedSortedSetMultimap.ModifierConstructorDescriptionSynchronizedSortedSetMultimap
(MutableSortedSetMultimap<K, V> multimap) SynchronizedSortedSetMultimap
(MutableSortedSetMultimap<K, V> multimap, Object newLock) -
Uses of MutableSortedSetMultimap in org.eclipse.collections.impl.set.sorted.mutable
Modifier and TypeMethodDescription<V> MutableSortedSetMultimap<V,
T> <V> MutableSortedSetMultimap<V,
T> <V> MutableSortedSetMultimap<V,
T> SynchronizedSortedSet.groupByEach
(Function<? super T, ? extends Iterable<V>> function) <V> MutableSortedSetMultimap<V,
T> UnmodifiableSortedSet.groupByEach
(Function<? super T, ? extends Iterable<V>> function) -
Uses of MutableSortedSetMultimap in org.eclipse.collections.impl.utility
Modifier and TypeMethodDescriptionstatic <K,
V> MutableSortedSetMultimap<V, K> MapIterate.flip
(SortedMapIterable<K, V> iMap)