|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ImmutableMap | |
|---|---|
| com.google.common.collect | This package contains generic collection interfaces and implementations, and other utilities for working with collections. |
| Uses of ImmutableMap in com.google.common.collect |
|---|
| Methods in com.google.common.collect that return ImmutableMap | ||
|---|---|---|
ImmutableMap<K,V> |
ImmutableMap.Builder.build()
Returns a newly-created immutable map. |
|
static
|
ImmutableMap.copyOf(java.util.Map<? extends K,? extends V> map)
Returns an immutable map containing the same entries as map. |
|
static
|
ImmutableMap.of()
Returns the empty map. |
|
static
|
ImmutableMap.of(K k1,
V v1)
Returns an immutable map containing a single entry. |
|
static
|
ImmutableMap.of(K k1,
V v1,
K k2,
V v2)
Returns an immutable map containing the given entries, in order. |
|
static
|
ImmutableMap.of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3)
Returns an immutable map containing the given entries, in order. |
|
static
|
ImmutableMap.of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4)
Returns an immutable map containing the given entries, in order. |
|
static
|
ImmutableMap.of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4,
K k5,
V v5)
Returns an immutable map containing the given entries, in order. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||