Uses of Interface
org.eclipse.collections.api.multimap.sortedset.MutableSortedSetMultimap
Packages that use 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
Methods in org.eclipse.collections.api.map.sorted that return MutableSortedSetMultimap -
Uses of MutableSortedSetMultimap in org.eclipse.collections.api.multimap.sortedset
Methods in org.eclipse.collections.api.multimap.sortedset that return MutableSortedSetMultimapModifier 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
Methods in org.eclipse.collections.api.set.sorted that return MutableSortedSetMultimapModifier 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
Methods in org.eclipse.collections.impl.factory that return MutableSortedSetMultimapModifier 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
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableSortedSetMultimap -
Uses of MutableSortedSetMultimap in org.eclipse.collections.impl.multimap.set.sorted
Classes in org.eclipse.collections.impl.multimap.set.sorted that implement MutableSortedSetMultimapModifier and TypeClassDescriptionfinal class
A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.class
final class
Methods in org.eclipse.collections.impl.multimap.set.sorted that return MutableSortedSetMultimapModifier 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) Methods in org.eclipse.collections.impl.multimap.set.sorted with parameters of type MutableSortedSetMultimapModifier 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.Constructors in org.eclipse.collections.impl.multimap.set.sorted with parameters of type MutableSortedSetMultimapModifierConstructorDescriptionSynchronizedSortedSetMultimap
(MutableSortedSetMultimap<K, V> multimap) SynchronizedSortedSetMultimap
(MutableSortedSetMultimap<K, V> multimap, Object newLock) -
Uses of MutableSortedSetMultimap in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableSortedSetMultimapModifier 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
Methods in org.eclipse.collections.impl.utility that return MutableSortedSetMultimapModifier and TypeMethodDescriptionstatic <K,
V> MutableSortedSetMultimap<V, K> MapIterate.flip
(SortedMapIterable<K, V> iMap)