@NotNull ImmutableValueMap |
ImmutableValueMap.Builder.build() |
Returns a newly-created immutable map.
|
static @NotNull ImmutableValueMap |
ImmutableValueMap.copyOf(@NotNull Map<String,Object> map) |
Returns an immutable map containing the same entries as map .
|
static @NotNull ImmutableValueMap |
ImmutableValueMap.of() |
Returns the empty map.
|
static @NotNull ImmutableValueMap |
ImmutableValueMap.of(@NotNull String k1,
@NotNull Object v1) |
Returns an immutable map containing a single entry.
|
static @NotNull ImmutableValueMap |
ImmutableValueMap.of(@NotNull String k1,
@NotNull Object v1,
@NotNull String k2,
@NotNull Object v2) |
Returns an immutable map containing the given entries, in order.
|
static @NotNull ImmutableValueMap |
ImmutableValueMap.of(@NotNull String k1,
@NotNull Object v1,
@NotNull String k2,
@NotNull Object v2,
@NotNull String k3,
@NotNull Object v3) |
Returns an immutable map containing the given entries, in order.
|
static @NotNull ImmutableValueMap |
ImmutableValueMap.of(@NotNull String k1,
@NotNull Object v1,
@NotNull String k2,
@NotNull Object v2,
@NotNull String k3,
@NotNull Object v3,
@NotNull String k4,
@NotNull Object v4) |
Returns an immutable map containing the given entries, in order.
|
static ImmutableValueMap |
ImmutableValueMap.of(@NotNull String k1,
@NotNull Object v1,
@NotNull String k2,
@NotNull Object v2,
@NotNull String k3,
@NotNull Object v3,
@NotNull String k4,
@NotNull Object v4,
@NotNull String k5,
@NotNull Object v5) |
Returns an immutable map containing the given entries, in order.
|