ImmutableMapFactory
public enum ImmutableMapFactoryImpl extends java.lang.Enum<ImmutableMapFactoryImpl> implements ImmutableMapFactory
Enum Constant | Description |
---|---|
INSTANCE |
Modifier and Type | Method | Description |
---|---|---|
<K,V> ImmutableMap<K,V> |
empty() |
|
<K,V> ImmutableMap<K,V> |
of() |
Same as
ImmutableMapFactory.empty() . |
<K,V> ImmutableMap<K,V> |
of(K key,
V value) |
|
<K,V> ImmutableMap<K,V> |
of(K key1,
V value1,
K key2,
V value2) |
|
<K,V> ImmutableMap<K,V> |
of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
|
<K,V> ImmutableMap<K,V> |
of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
|
<K,V> ImmutableMap<K,V> |
ofAll(java.util.Map<K,V> map) |
Same as
ImmutableMapFactory.withAll(Map) . |
<K,V> ImmutableMap<K,V> |
ofMap(java.util.Map<K,V> map) |
Deprecated.
use
ofAll(Map) instead (inlineable) |
static ImmutableMapFactoryImpl |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ImmutableMapFactoryImpl[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
<K,V> ImmutableMap<K,V> |
with() |
Same as
ImmutableMapFactory.empty() . |
<K,V> ImmutableMap<K,V> |
with(K key,
V value) |
|
<K,V> ImmutableMap<K,V> |
with(K key1,
V value1,
K key2,
V value2) |
|
<K,V> ImmutableMap<K,V> |
with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
|
<K,V> ImmutableMap<K,V> |
with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
|
<K,V> ImmutableMap<K,V> |
withAll(java.util.Map<K,V> map) |
public static final ImmutableMapFactoryImpl INSTANCE
public static ImmutableMapFactoryImpl[] values()
for (ImmutableMapFactoryImpl c : ImmutableMapFactoryImpl.values()) System.out.println(c);
public static ImmutableMapFactoryImpl valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic <K,V> ImmutableMap<K,V> empty()
empty
in interface ImmutableMapFactory
public <K,V> ImmutableMap<K,V> of()
ImmutableMapFactory
ImmutableMapFactory.empty()
.of
in interface ImmutableMapFactory
public <K,V> ImmutableMap<K,V> with()
ImmutableMapFactory
ImmutableMapFactory.empty()
.with
in interface ImmutableMapFactory
public <K,V> ImmutableMap<K,V> of(K key, V value)
ImmutableMapFactory
of
in interface ImmutableMapFactory
public <K,V> ImmutableMap<K,V> with(K key, V value)
with
in interface ImmutableMapFactory
public <K,V> ImmutableMap<K,V> of(K key1, V value1, K key2, V value2)
ImmutableMapFactory
of
in interface ImmutableMapFactory
public <K,V> ImmutableMap<K,V> with(K key1, V value1, K key2, V value2)
with
in interface ImmutableMapFactory
public <K,V> ImmutableMap<K,V> of(K key1, V value1, K key2, V value2, K key3, V value3)
ImmutableMapFactory
of
in interface ImmutableMapFactory
public <K,V> ImmutableMap<K,V> with(K key1, V value1, K key2, V value2, K key3, V value3)
with
in interface ImmutableMapFactory
public <K,V> ImmutableMap<K,V> of(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
ImmutableMapFactory
of
in interface ImmutableMapFactory
public <K,V> ImmutableMap<K,V> with(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
with
in interface ImmutableMapFactory
@Deprecated public <K,V> ImmutableMap<K,V> ofMap(java.util.Map<K,V> map)
ofAll(Map)
instead (inlineable)ofMap
in interface ImmutableMapFactory
public <K,V> ImmutableMap<K,V> ofAll(java.util.Map<K,V> map)
ImmutableMapFactory
ImmutableMapFactory.withAll(Map)
.ofAll
in interface ImmutableMapFactory
public <K,V> ImmutableMap<K,V> withAll(java.util.Map<K,V> map)
withAll
in interface ImmutableMapFactory
Copyright © 2004–2018. All rights reserved.