Class MutableBiMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl
-
- All Implemented Interfaces:
MutableBiMapFactory
public class MutableBiMapFactoryImpl extends java.lang.Object implements MutableBiMapFactory
-
-
Field Summary
Fields Modifier and Type Field Description static MutableBiMapFactory
INSTANCE
-
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()
Same asMutableBiMapFactory.empty()
.<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()
Same asMutableBiMapFactory.empty()
.<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:
empty
in interfaceMutableBiMapFactory
-
of
public <K,V> MutableBiMap<K,V> of()
Description copied from interface:MutableBiMapFactory
Same asMutableBiMapFactory.empty()
.- Specified by:
of
in interfaceMutableBiMapFactory
-
with
public <K,V> MutableBiMap<K,V> with()
Description copied from interface:MutableBiMapFactory
Same asMutableBiMapFactory.empty()
.- Specified by:
with
in interfaceMutableBiMapFactory
-
of
public <K,V> MutableBiMap<K,V> of(K key, V value)
Description copied from interface:MutableBiMapFactory
- Specified by:
of
in interfaceMutableBiMapFactory
-
with
public <K,V> MutableBiMap<K,V> with(K key, V value)
- Specified by:
with
in interfaceMutableBiMapFactory
-
of
public <K,V> MutableBiMap<K,V> of(K key1, V value1, K key2, V value2)
Description copied from interface:MutableBiMapFactory
- Specified by:
of
in interfaceMutableBiMapFactory
-
with
public <K,V> MutableBiMap<K,V> with(K key1, V value1, K key2, V value2)
- Specified by:
with
in interfaceMutableBiMapFactory
-
of
public <K,V> MutableBiMap<K,V> of(K key1, V value1, K key2, V value2, K key3, V value3)
Description copied from interface:MutableBiMapFactory
- Specified by:
of
in interfaceMutableBiMapFactory
-
with
public <K,V> MutableBiMap<K,V> with(K key1, V value1, K key2, V value2, K key3, V value3)
- Specified by:
with
in 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)
Description copied from interface:MutableBiMapFactory
- Specified by:
of
in 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:
with
in interfaceMutableBiMapFactory
-
-