| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ListMultimap | |
|---|---|
| com.google.common.collect | This package contains generic collection interfaces and implementations, and other utilities for working with collections. | 
| Uses of ListMultimap in com.google.common.collect | 
|---|
| Classes in com.google.common.collect that implement ListMultimap | |
|---|---|
|  class | ArrayListMultimap<K,V>Implementation of Multimapthat uses anArrayListto store
 the values for a given key. | 
|  class | ForwardingListMultimap<K,V>A list multimap which forwards all its method calls to another list multimap. | 
|  class | ImmutableListMultimap<K,V>An immutable ListMultimapwith reliable user-specified key and value
 iteration order. | 
|  class | LinkedListMultimap<K,V>An implementation of ListMultimapthat supports deterministic
 iteration order for both keys and values. | 
| Methods in com.google.common.collect that return ListMultimap | ||
|---|---|---|
| static
 | MapConstraints.constrainedListMultimap(ListMultimap<K,V> multimap,
                                               MapConstraint<? super K,? super V> constraint)Returns a constrained view of the specified list multimap, using the specified constraint. | |
| protected abstract  ListMultimap<K,V> | ForwardingListMultimap.delegate() | |
| static
 | Multimaps.newListMultimap(Map<K,Collection<V>> map,
                               Supplier<? extends List<V>> factory)Creates a new ListMultimapthat uses the provided map and factory. | |
| static
 | Multimaps.synchronizedListMultimap(ListMultimap<K,V> multimap)Returns a synchronized (thread-safe) ListMultimapbacked by the
 specified multimap. | |
| static
 | Multimaps.unmodifiableListMultimap(ListMultimap<K,V> delegate)Returns an unmodifiable view of the specified ListMultimap. | |
| Methods in com.google.common.collect with parameters of type ListMultimap | ||
|---|---|---|
| static
 | MapConstraints.constrainedListMultimap(ListMultimap<K,V> multimap,
                                               MapConstraint<? super K,? super V> constraint)Returns a constrained view of the specified list multimap, using the specified constraint. | |
| static
 | Multimaps.synchronizedListMultimap(ListMultimap<K,V> multimap)Returns a synchronized (thread-safe) ListMultimapbacked by the
 specified multimap. | |
| static
 | Multimaps.unmodifiableListMultimap(ListMultimap<K,V> delegate)Returns an unmodifiable view of the specified ListMultimap. | |
| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||