Class ImmutableBiMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bimap.immutable.ImmutableBiMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableBiMapFactory
public class ImmutableBiMapFactoryImpl extends Object implements ImmutableBiMapFactory
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableBiMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableBiMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <K,V>
ImmutableBiMap<K,V>empty()<K,V>
ImmutableBiMap<K,V>of()<K,V>
ImmutableBiMap<K,V>of(K key, V value)<K,V>
ImmutableBiMap<K,V>of(K key1, V value1, K key2, V value2)<K,V>
ImmutableBiMap<K,V>of(K key1, V value1, K key2, V value2, K key3, V value3)<K,V>
ImmutableBiMap<K,V>of(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)<K,V>
ImmutableBiMap<K,V>ofAll(Map<K,V> map)<K,V>
ImmutableBiMap<K,V>ofAll(MutableBiMap<K,V> biMap)<K,V>
ImmutableBiMap<K,V>ofAll(ImmutableMap<K,V> immutableMap)<K,V>
ImmutableBiMap<K,V>with()<K,V>
ImmutableBiMap<K,V>with(K key, V value)<K,V>
ImmutableBiMap<K,V>with(K key1, V value1, K key2, V value2)<K,V>
ImmutableBiMap<K,V>with(K key1, V value1, K key2, V value2, K key3, V value3)<K,V>
ImmutableBiMap<K,V>with(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)<K,V>
ImmutableBiMap<K,V>withAll(Map<K,V> map)<K,V>
ImmutableBiMap<K,V>withAll(MutableBiMap<K,V> biMap)<K,V>
ImmutableBiMap<K,V>withAll(ImmutableMap<K,V> immutableMap)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableBiMapFactory INSTANCE
-
-
Method Detail
-
empty
public <K,V> ImmutableBiMap<K,V> empty()
- Specified by:
emptyin interfaceImmutableBiMapFactory
-
of
public <K,V> ImmutableBiMap<K,V> of()
- Specified by:
ofin interfaceImmutableBiMapFactory
-
with
public <K,V> ImmutableBiMap<K,V> with()
- Specified by:
within interfaceImmutableBiMapFactory
-
of
public <K,V> ImmutableBiMap<K,V> of(K key, V value)
- Specified by:
ofin interfaceImmutableBiMapFactory
-
with
public <K,V> ImmutableBiMap<K,V> with(K key, V value)
- Specified by:
within interfaceImmutableBiMapFactory
-
of
public <K,V> ImmutableBiMap<K,V> of(K key1, V value1, K key2, V value2)
- Specified by:
ofin interfaceImmutableBiMapFactory
-
with
public <K,V> ImmutableBiMap<K,V> with(K key1, V value1, K key2, V value2)
- Specified by:
within interfaceImmutableBiMapFactory
-
of
public <K,V> ImmutableBiMap<K,V> of(K key1, V value1, K key2, V value2, K key3, V value3)
- Specified by:
ofin interfaceImmutableBiMapFactory
-
with
public <K,V> ImmutableBiMap<K,V> with(K key1, V value1, K key2, V value2, K key3, V value3)
- Specified by:
within interfaceImmutableBiMapFactory
-
of
public <K,V> ImmutableBiMap<K,V> of(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
- Specified by:
ofin interfaceImmutableBiMapFactory
-
with
public <K,V> ImmutableBiMap<K,V> with(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
- Specified by:
within interfaceImmutableBiMapFactory
-
ofAll
public <K,V> ImmutableBiMap<K,V> ofAll(Map<K,V> map)
- Specified by:
ofAllin interfaceImmutableBiMapFactory
-
withAll
public <K,V> ImmutableBiMap<K,V> withAll(Map<K,V> map)
- Specified by:
withAllin interfaceImmutableBiMapFactory
-
ofAll
public <K,V> ImmutableBiMap<K,V> ofAll(MutableBiMap<K,V> biMap)
- Specified by:
ofAllin interfaceImmutableBiMapFactory
-
withAll
public <K,V> ImmutableBiMap<K,V> withAll(MutableBiMap<K,V> biMap)
- Specified by:
withAllin interfaceImmutableBiMapFactory
-
ofAll
public <K,V> ImmutableBiMap<K,V> ofAll(ImmutableMap<K,V> immutableMap)
- Specified by:
ofAllin interfaceImmutableBiMapFactory
-
withAll
public <K,V> ImmutableBiMap<K,V> withAll(ImmutableMap<K,V> immutableMap)
- Specified by:
withAllin interfaceImmutableBiMapFactory
-
-