public enum MutableBiMapFactoryImpl extends Enum<MutableBiMapFactoryImpl> implements MutableBiMapFactory
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
<K,V> MutableBiMap<K,V> |
empty() |
<K,V> MutableBiMap<K,V> |
of() |
<K,V> MutableBiMap<K,V> |
of(K key,
V value) |
<K,V> MutableBiMap<K,V> |
of(K key1,
V value1,
K key2,
V value2) |
<K,V> MutableBiMap<K,V> |
of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
<K,V> MutableBiMap<K,V> |
of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
static MutableBiMapFactoryImpl |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MutableBiMapFactoryImpl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
<K,V> MutableBiMap<K,V> |
with() |
<K,V> MutableBiMap<K,V> |
with(K key,
V value) |
<K,V> MutableBiMap<K,V> |
with(K key1,
V value1,
K key2,
V value2) |
<K,V> MutableBiMap<K,V> |
with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
<K,V> MutableBiMap<K,V> |
with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
public static final MutableBiMapFactoryImpl INSTANCE
public static MutableBiMapFactoryImpl[] values()
for (MutableBiMapFactoryImpl c : MutableBiMapFactoryImpl.values()) System.out.println(c);
public static MutableBiMapFactoryImpl valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic <K,V> MutableBiMap<K,V> empty()
empty in interface MutableBiMapFactorypublic <K,V> MutableBiMap<K,V> of()
of in interface MutableBiMapFactorypublic <K,V> MutableBiMap<K,V> with()
with in interface MutableBiMapFactorypublic <K,V> MutableBiMap<K,V> of(K key, V value)
of in interface MutableBiMapFactorypublic <K,V> MutableBiMap<K,V> with(K key, V value)
with in interface MutableBiMapFactorypublic <K,V> MutableBiMap<K,V> of(K key1, V value1, K key2, V value2)
of in interface MutableBiMapFactorypublic <K,V> MutableBiMap<K,V> with(K key1, V value1, K key2, V value2)
with in interface MutableBiMapFactorypublic <K,V> MutableBiMap<K,V> of(K key1, V value1, K key2, V value2, K key3, V value3)
of in interface MutableBiMapFactorypublic <K,V> MutableBiMap<K,V> with(K key1, V value1, K key2, V value2, K key3, V value3)
with in interface MutableBiMapFactorypublic <K,V> MutableBiMap<K,V> of(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
of in interface MutableBiMapFactorypublic <K,V> MutableBiMap<K,V> with(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
with in interface MutableBiMapFactoryCopyright © 2004–2017. All rights reserved.