Uses of Interface
com.google.common.collect.SortedSetMultimap
Packages that use SortedSetMultimap
Package
Description
This package contains generic collection interfaces and implementations, and other utilities for
working with collections.
-
Uses of SortedSetMultimap in com.google.common.collect
Classes in com.google.common.collect that implement SortedSetMultimapModifier and TypeClassDescription(package private) classBasic implementation of aSortedSetMultimapwith a sorted key set.(package private) classBasic implementation of theSortedSetMultimapinterface.classA sorted set multimap which forwards all its method calls to another sorted set multimap.private static classprivate static classprivate static classclassTreeMultimap<K,V> Implementation ofMultimapwhose keys and values are ordered by their natural ordering or by supplied comparators.Methods in com.google.common.collect that return SortedSetMultimapModifier and TypeMethodDescriptionabstract <K extends K0,V extends V0>
SortedSetMultimap<K,V> MultimapBuilder.SortedSetMultimapBuilder.build()<K extends K0,V extends V0>
SortedSetMultimap<K,V> protected abstract SortedSetMultimap<K,V> ForwardingSortedSetMultimap.delegate()Multimaps.UnmodifiableSortedSetMultimap.delegate()(package private) SortedSetMultimap<K,V> Synchronized.SynchronizedSortedSetMultimap.delegate()static <K,V> SortedSetMultimap<K, V> Multimaps.newSortedSetMultimap(Map<K, Collection<V>> map, Supplier<? extends SortedSet<V>> factory) Creates a newSortedSetMultimapthat uses the provided map and factory.(package private) static <K,V> SortedSetMultimap<K, V> Synchronized.sortedSetMultimap(SortedSetMultimap<K, V> multimap, Object mutex) static <K,V> SortedSetMultimap<K, V> Multimaps.synchronizedSortedSetMultimap(SortedSetMultimap<K, V> multimap) Returns a synchronized (thread-safe)SortedSetMultimapbacked by the specified multimap.static <K,V> SortedSetMultimap<K, V> Multimaps.unmodifiableSortedSetMultimap(SortedSetMultimap<K, V> delegate) Returns an unmodifiable view of the specifiedSortedSetMultimap.Methods in com.google.common.collect with parameters of type SortedSetMultimapModifier and TypeMethodDescriptionMultimaps.asMap(SortedSetMultimap<K, V> multimap) Returnsmultimap.asMap(), with its type corrected fromMap<K, Collection<V>>toMap<K, SortedSet<V>>.(package private) static <K,V> SortedSetMultimap<K, V> Synchronized.sortedSetMultimap(SortedSetMultimap<K, V> multimap, Object mutex) static <K,V> SortedSetMultimap<K, V> Multimaps.synchronizedSortedSetMultimap(SortedSetMultimap<K, V> multimap) Returns a synchronized (thread-safe)SortedSetMultimapbacked by the specified multimap.static <K,V> SortedSetMultimap<K, V> Multimaps.unmodifiableSortedSetMultimap(SortedSetMultimap<K, V> delegate) Returns an unmodifiable view of the specifiedSortedSetMultimap.Constructors in com.google.common.collect with parameters of type SortedSetMultimapModifierConstructorDescription(package private)SynchronizedSortedSetMultimap(SortedSetMultimap<K, V> delegate, Object mutex) (package private)UnmodifiableSortedSetMultimap(SortedSetMultimap<K, V> delegate)