Class FixedSizeMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.fixed.FixedSizeMapFactoryImpl
-
- All Implemented Interfaces:
FixedSizeMapFactory
public class FixedSizeMapFactoryImpl extends Object implements FixedSizeMapFactory
-
-
Field Summary
Fields Modifier and Type Field Description static FixedSizeMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description FixedSizeMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <K,V>
FixedSizeMap<K,V>empty()<K,V>
FixedSizeMap<K,V>of()<K,V>
FixedSizeMap<K,V>of(K key, V value)<K,V>
FixedSizeMap<K,V>of(K key1, V value1, K key2, V value2)<K,V>
FixedSizeMap<K,V>of(K key1, V value1, K key2, V value2, K key3, V value3)<K,V>
FixedSizeMap<K,V>with()<K,V>
FixedSizeMap<K,V>with(K key, V value)<K,V>
FixedSizeMap<K,V>with(K key1, V value1, K key2, V value2)<K,V>
FixedSizeMap<K,V>with(K key1, V value1, K key2, V value2, K key3, V value3)
-
-
-
Field Detail
-
INSTANCE
public static final FixedSizeMapFactory INSTANCE
-
-
Method Detail
-
empty
public <K,V> FixedSizeMap<K,V> empty()
- Specified by:
emptyin interfaceFixedSizeMapFactory
-
of
public <K,V> FixedSizeMap<K,V> of()
- Specified by:
ofin interfaceFixedSizeMapFactory
-
with
public <K,V> FixedSizeMap<K,V> with()
- Specified by:
within interfaceFixedSizeMapFactory
-
of
public <K,V> FixedSizeMap<K,V> of(K key, V value)
- Specified by:
ofin interfaceFixedSizeMapFactory
-
with
public <K,V> FixedSizeMap<K,V> with(K key, V value)
- Specified by:
within interfaceFixedSizeMapFactory
-
of
public <K,V> FixedSizeMap<K,V> of(K key1, V value1, K key2, V value2)
- Specified by:
ofin interfaceFixedSizeMapFactory
-
with
public <K,V> FixedSizeMap<K,V> with(K key1, V value1, K key2, V value2)
- Specified by:
within interfaceFixedSizeMapFactory
-
of
public <K,V> FixedSizeMap<K,V> of(K key1, V value1, K key2, V value2, K key3, V value3)
- Specified by:
ofin interfaceFixedSizeMapFactory
-
with
public <K,V> FixedSizeMap<K,V> with(K key1, V value1, K key2, V value2, K key3, V value3)
- Specified by:
within interfaceFixedSizeMapFactory
-
-