ImmutableMap<K,V> |
ImmutableMap.Builder.build() |
Generates and returns a new ImmutableMap instance which
contains all the entries added into the Builder by put()
method.
|
static <K,V> ImmutableMap<K,V> |
ImmutableMap.of(K k0,
V v0) |
Returns an ImmutableMap instance containing a single entry.
|
static <K,V> ImmutableMap<K,V> |
ImmutableMap.of(K k0,
V v0,
K k1,
V v1) |
Returns an ImmutableMap instance containing two entries.
|
static <K,V> ImmutableMap<K,V> |
ImmutableMap.of(K k0,
V v0,
K k1,
V v1,
K k2,
V v2) |
Returns an ImmutableMap instance containing three entries.
|
static <K,V> ImmutableMap<K,V> |
ImmutableMap.of(K k0,
V v0,
K k1,
V v1,
K k2,
V v2,
K k3,
V v3) |
Returns an ImmutableMap instance containing four entries.
|
static <K,V> ImmutableMap<K,V> |
ImmutableMap.of(K k0,
V v0,
K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4) |
Returns an ImmutableMap instance containing five entries.
|