Class MutableBiMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl
-
- All Implemented Interfaces:
MutableBiMapFactory
public class MutableBiMapFactoryImpl extends Object implements MutableBiMapFactory
-
-
Field Summary
Fields Modifier and Type Field Description static MutableBiMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableBiMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method 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)<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)
-
-
-
Field Detail
-
INSTANCE
public static final MutableBiMapFactory INSTANCE
-
-
Method Detail
-
empty
public <K,V> MutableBiMap<K,V> empty()
- Specified by:
emptyin interfaceMutableBiMapFactory
-
of
public <K,V> MutableBiMap<K,V> of()
- Specified by:
ofin interfaceMutableBiMapFactory
-
with
public <K,V> MutableBiMap<K,V> with()
- Specified by:
within interfaceMutableBiMapFactory
-
of
public <K,V> MutableBiMap<K,V> of(K key, V value)
- Specified by:
ofin interfaceMutableBiMapFactory
-
with
public <K,V> MutableBiMap<K,V> with(K key, V value)
- Specified by:
within interfaceMutableBiMapFactory
-
of
public <K,V> MutableBiMap<K,V> of(K key1, V value1, K key2, V value2)
- Specified by:
ofin interfaceMutableBiMapFactory
-
with
public <K,V> MutableBiMap<K,V> with(K key1, V value1, K key2, V value2)
- Specified by:
within interfaceMutableBiMapFactory
-
of
public <K,V> MutableBiMap<K,V> of(K key1, V value1, K key2, V value2, K key3, V value3)
- Specified by:
ofin interfaceMutableBiMapFactory
-
with
public <K,V> MutableBiMap<K,V> with(K key1, V value1, K key2, V value2, K key3, V value3)
- Specified by:
within interfaceMutableBiMapFactory
-
of
public <K,V> MutableBiMap<K,V> of(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
- Specified by:
ofin interfaceMutableBiMapFactory
-
with
public <K,V> MutableBiMap<K,V> with(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
- Specified by:
within interfaceMutableBiMapFactory
-
-