| Package | Description |
|---|---|
| com.google.common.collect |
This package contains generic collection interfaces and implementations, and other utilities for working with collections.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ForwardingSortedSetMultimap<K
A sorted set multimap which forwards all its method calls to another sorted set multimap.
|
class |
TreeMultimap<K
Implementation of
Multimap whose keys and values are ordered by their natural ordering or by supplied comparators.
|
| Modifier and Type | Method and Description |
|---|---|
abstract <K extends K0 |
MultimapBuilder.SortedSetMultimapBuilder.build()
|
<K extends K0 |
MultimapBuilder.SortedSetMultimapBuilder.build(Multimap
|
static <K |
MapConstraints.constrainedSortedSetMultimap(SortedSetMultimap
Returns a constrained view of the specified sorted-set multimap, using the specified constraint.
|
protected abstract SortedSetMultimap |
ForwardingSortedSetMultimap.delegate()
|
static <K |
Multimaps.newSortedSetMultimap(Map
Creates a new
SortedSetMultimap that uses the provided map and factory.
|
static <K |
Multimaps.synchronizedSortedSetMultimap(SortedSetMultimap
Returns a synchronized (thread-safe)
SortedSetMultimap backed by the specified multimap.
|
static <K |
Multimaps.unmodifiableSortedSetMultimap(SortedSetMultimap
Returns an unmodifiable view of the specified
SortedSetMultimap.
|
| Modifier and Type | Method and Description |
|---|---|
static <K |
Multimaps.asMap(SortedSetMultimap
Returns
multimap.asMap(), with its type corrected from
Map<K, Collection<V>> to
Map<K, SortedSet<V>>.
|
static <K |
MapConstraints.constrainedSortedSetMultimap(SortedSetMultimap
Returns a constrained view of the specified sorted-set multimap, using the specified constraint.
|
static <K |
Multimaps.synchronizedSortedSetMultimap(SortedSetMultimap
Returns a synchronized (thread-safe)
SortedSetMultimap backed by the specified multimap.
|
static <K |
Multimaps.unmodifiableSortedSetMultimap(SortedSetMultimap
Returns an unmodifiable view of the specified
SortedSetMultimap.
|