Uses of Interface
com.google.common.collect.SortedSetMultimap
Package
Description
Collection interfaces and implementations, and other utilities for collections.
-
Uses of SortedSetMultimap in com.google.common.collect
Modifier and TypeClassDescriptionclass
ForwardingSortedSetMultimap<K extends @Nullable Object,
V extends @Nullable Object> A sorted set multimap which forwards all its method calls to another sorted set multimap.class
TreeMultimap<K extends @Nullable Object,
V extends @Nullable Object> Implementation ofMultimap
whose keys and values are ordered by their natural ordering or by supplied comparators.Modifier 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()
static <K extends @Nullable Object,
V extends @Nullable Object>
SortedSetMultimap<K, V> Multimaps.newSortedSetMultimap
(Map<K, Collection<V>> map, Supplier<? extends SortedSet<V>> factory) Creates a newSortedSetMultimap
that uses the provided map and factory.static <K extends @Nullable Object,
V extends @Nullable Object>
SortedSetMultimap<K, V> Multimaps.synchronizedSortedSetMultimap
(SortedSetMultimap<K, V> multimap) Returns a synchronized (thread-safe)SortedSetMultimap
backed by the specified multimap.static <K extends @Nullable Object,
V extends @Nullable Object>
SortedSetMultimap<K, V> Multimaps.unmodifiableSortedSetMultimap
(SortedSetMultimap<K, V> delegate) Returns an unmodifiable view of the specifiedSortedSetMultimap
.Modifier and TypeMethodDescriptionMultimaps.asMap
(SortedSetMultimap<K, V> multimap) Returnsmultimap.asMap()
, with its type corrected fromMap<K, Collection<V>>
toMap<K, SortedSet<V>>
.static <K extends @Nullable Object,
V extends @Nullable Object>
SortedSetMultimap<K, V> Multimaps.synchronizedSortedSetMultimap
(SortedSetMultimap<K, V> multimap) Returns a synchronized (thread-safe)SortedSetMultimap
backed by the specified multimap.static <K extends @Nullable Object,
V extends @Nullable Object>
SortedSetMultimap<K, V> Multimaps.unmodifiableSortedSetMultimap
(SortedSetMultimap<K, V> delegate) Returns an unmodifiable view of the specifiedSortedSetMultimap
.