Uses of Interface
com.google.common.collect.SortedSetMultimap
-
Packages that use SortedSetMultimap Package Description com.google.common.collect 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 SortedSetMultimap Modifier and Type Class Description (package private) classAbstractSortedKeySortedSetMultimap<K,V>Basic implementation of aSortedSetMultimapwith a sorted key set.(package private) classAbstractSortedSetMultimap<K,V>Basic implementation of theSortedSetMultimapinterface.classForwardingSortedSetMultimap<K,V>A sorted set multimap which forwards all its method calls to another sorted set multimap.private static classMultimaps.CustomSortedSetMultimap<K,V>private static classMultimaps.UnmodifiableSortedSetMultimap<K,V>private static classSynchronized.SynchronizedSortedSetMultimap<K,V>classTreeMultimap<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 SortedSetMultimap Modifier and Type Method Description abstract <K extends K0,V extends V0>
SortedSetMultimap<K,V>MultimapBuilder.SortedSetMultimapBuilder. build()<K extends K0,V extends V0>
SortedSetMultimap<K,V>MultimapBuilder.SortedSetMultimapBuilder. build(Multimap<? extends K,? extends V> multimap)protected abstract SortedSetMultimap<K,V>ForwardingSortedSetMultimap. delegate()SortedSetMultimap<K,V>Multimaps.UnmodifiableSortedSetMultimap. delegate()(package private) SortedSetMultimap<K,V>Synchronized.SynchronizedSortedSetMultimap. delegate()static <K,V>
SortedSetMultimap<K,V>Multimaps. newSortedSetMultimap(java.util.Map<K,java.util.Collection<V>> map, Supplier<? extends java.util.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, java.lang.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 SortedSetMultimap Modifier and Type Method Description static <K,V>
java.util.Map<K,java.util.SortedSet<V>>Multimaps. 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, java.lang.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 SortedSetMultimap Constructor Description SynchronizedSortedSetMultimap(SortedSetMultimap<K,V> delegate, java.lang.Object mutex)UnmodifiableSortedSetMultimap(SortedSetMultimap<K,V> delegate)
-