|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ImmutableListMultimap | |
---|---|
com.google.common.collect | This package contains generic collection interfaces and implementations, and other utilities for working with collections. |
com.google.common.net | This package contains utility methods and classes for working with net addresses (numeric IP and domain names). |
Uses of ImmutableListMultimap in com.google.common.collect |
---|
Methods in com.google.common.collect that return ImmutableListMultimap | ||
---|---|---|
ImmutableListMultimap<K,V> |
ImmutableListMultimap.Builder.build()
Returns a newly-created immutable list multimap. |
|
static
|
ImmutableListMultimap.copyOf(Multimap<? extends K,? extends V> multimap)
Returns an immutable multimap containing the same mappings as multimap . |
|
static
|
Multimaps.index(Iterable<V> values,
Function<? super V,K> keyFunction)
Creates an index ImmutableListMultimap that contains the results of
applying a specified function to each item in an Iterable of
values. |
|
static
|
Multimaps.index(Iterator<V> values,
Function<? super V,K> keyFunction)
Creates an index ImmutableListMultimap that contains the results of
applying a specified function to each item in an Iterator of
values. |
|
ImmutableListMultimap<V,K> |
ImmutableListMultimap.inverse()
Returns an immutable multimap which is the inverse of this one. |
|
static
|
ImmutableListMultimap.of()
Returns the empty multimap. |
|
static
|
ImmutableListMultimap.of(K k1,
V v1)
Returns an immutable multimap containing a single entry. |
|
static
|
ImmutableListMultimap.of(K k1,
V v1,
K k2,
V v2)
Returns an immutable multimap containing the given entries, in order. |
|
static
|
ImmutableListMultimap.of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3)
Returns an immutable multimap containing the given entries, in order. |
|
static
|
ImmutableListMultimap.of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4)
Returns an immutable multimap containing the given entries, in order. |
|
static
|
ImmutableListMultimap.of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4,
K k5,
V v5)
Returns an immutable multimap containing the given entries, in order. |
Methods in com.google.common.collect with parameters of type ImmutableListMultimap | ||
---|---|---|
static
|
Multimaps.unmodifiableListMultimap(ImmutableListMultimap<K,V> delegate)
Deprecated. no need to use this |
Uses of ImmutableListMultimap in com.google.common.net |
---|
Methods in com.google.common.net that return ImmutableListMultimap | |
---|---|
ImmutableListMultimap<String,String> |
MediaType.parameters()
Returns a multimap containing the parameters of this media type. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |