Class MutableIntObjectMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableIntObjectMapFactoryImpl
-
- All Implemented Interfaces:
MutableIntObjectMapFactory
public class MutableIntObjectMapFactoryImpl extends Object implements MutableIntObjectMapFactory
MutableIntObjectMapFactoryImpl is a factory implementation which creates instances of typeMutableIntObjectMap. This file was automatically generated from template file mutablePrimitiveObjectMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableIntObjectMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableIntObjectMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <V> MutableIntObjectMap<V>empty()<T,V>
MutableIntObjectMap<V>from(Iterable<T> iterable, IntFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)<V> MutableIntObjectMap<V>of()<V> MutableIntObjectMap<V>of(int key, V value)<V> MutableIntObjectMap<V>of(int key1, V value1, int key2, V value2)<V> MutableIntObjectMap<V>of(int key1, V value1, int key2, V value2, int key3, V value3)<V> MutableIntObjectMap<V>of(int key1, V value1, int key2, V value2, int key3, V value3, int key4, V value4)<V> MutableIntObjectMap<V>ofAll(IntObjectMap<? extends V> map)<V> MutableIntObjectMap<V>ofInitialCapacity(int capacity)<V> MutableIntObjectMap<V>with()<V> MutableIntObjectMap<V>with(int key, V value)<V> MutableIntObjectMap<V>with(int key1, V value1, int key2, V value2)<V> MutableIntObjectMap<V>with(int key1, V value1, int key2, V value2, int key3, V value3)<V> MutableIntObjectMap<V>with(int key1, V value1, int key2, V value2, int key3, V value3, int key4, V value4)<V> MutableIntObjectMap<V>withAll(IntObjectMap<? extends V> map)<V> MutableIntObjectMap<V>withInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableIntObjectMapFactory INSTANCE
-
-
Method Detail
-
empty
public <V> MutableIntObjectMap<V> empty()
- Specified by:
emptyin interfaceMutableIntObjectMapFactory
-
of
public <V> MutableIntObjectMap<V> of()
- Specified by:
ofin interfaceMutableIntObjectMapFactory
-
with
public <V> MutableIntObjectMap<V> with()
- Specified by:
within interfaceMutableIntObjectMapFactory
-
of
public <V> MutableIntObjectMap<V> of(int key, V value)
- Specified by:
ofin interfaceMutableIntObjectMapFactory
-
with
public <V> MutableIntObjectMap<V> with(int key, V value)
- Specified by:
within interfaceMutableIntObjectMapFactory
-
of
public <V> MutableIntObjectMap<V> of(int key1, V value1, int key2, V value2)
- Specified by:
ofin interfaceMutableIntObjectMapFactory
-
with
public <V> MutableIntObjectMap<V> with(int key1, V value1, int key2, V value2)
- Specified by:
within interfaceMutableIntObjectMapFactory
-
of
public <V> MutableIntObjectMap<V> of(int key1, V value1, int key2, V value2, int key3, V value3)
- Specified by:
ofin interfaceMutableIntObjectMapFactory
-
with
public <V> MutableIntObjectMap<V> with(int key1, V value1, int key2, V value2, int key3, V value3)
- Specified by:
within interfaceMutableIntObjectMapFactory
-
of
public <V> MutableIntObjectMap<V> of(int key1, V value1, int key2, V value2, int key3, V value3, int key4, V value4)
- Specified by:
ofin interfaceMutableIntObjectMapFactory
-
with
public <V> MutableIntObjectMap<V> with(int key1, V value1, int key2, V value2, int key3, V value3, int key4, V value4)
- Specified by:
within interfaceMutableIntObjectMapFactory
-
ofInitialCapacity
public <V> MutableIntObjectMap<V> ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableIntObjectMapFactory
-
withInitialCapacity
public <V> MutableIntObjectMap<V> withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableIntObjectMapFactory
-
ofAll
public <V> MutableIntObjectMap<V> ofAll(IntObjectMap<? extends V> map)
- Specified by:
ofAllin interfaceMutableIntObjectMapFactory
-
withAll
public <V> MutableIntObjectMap<V> withAll(IntObjectMap<? extends V> map)
- Specified by:
withAllin interfaceMutableIntObjectMapFactory
-
from
public <T,V> MutableIntObjectMap<V> from(Iterable<T> iterable, IntFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
- Specified by:
fromin interfaceMutableIntObjectMapFactory
-
-