Class MutableIntDoubleMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableIntDoubleMapFactoryImpl
-
- All Implemented Interfaces:
MutableIntDoubleMapFactory
public class MutableIntDoubleMapFactoryImpl extends Object implements MutableIntDoubleMapFactory
MutableIntDoubleMapFactoryImpl is a factory implementation which creates instances of typeMutableIntDoubleMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableIntDoubleMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableIntDoubleMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableIntDoubleMapempty()<T> MutableIntDoubleMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)MutableIntDoubleMapof()MutableIntDoubleMapof(int key, double value)MutableIntDoubleMapof(int key1, double value1, int key2, double value2)MutableIntDoubleMapof(int key1, double value1, int key2, double value2, int key3, double value3)MutableIntDoubleMapof(int key1, double value1, int key2, double value2, int key3, double value3, int key4, double value4)MutableIntDoubleMapofAll(IntDoubleMap map)MutableIntDoubleMapofInitialCapacity(int capacity)MutableIntDoubleMapwith()MutableIntDoubleMapwith(int key, double value)MutableIntDoubleMapwith(int key1, double value1, int key2, double value2)MutableIntDoubleMapwith(int key1, double value1, int key2, double value2, int key3, double value3)MutableIntDoubleMapwith(int key1, double value1, int key2, double value2, int key3, double value3, int key4, double value4)MutableIntDoubleMapwithAll(IntDoubleMap map)MutableIntDoubleMapwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableIntDoubleMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableIntDoubleMap empty()
- Specified by:
emptyin interfaceMutableIntDoubleMapFactory
-
of
public MutableIntDoubleMap of()
- Specified by:
ofin interfaceMutableIntDoubleMapFactory
-
with
public MutableIntDoubleMap with()
- Specified by:
within interfaceMutableIntDoubleMapFactory
-
with
public MutableIntDoubleMap with(int key, double value)
- Specified by:
within interfaceMutableIntDoubleMapFactory
-
of
public MutableIntDoubleMap of(int key, double value)
- Specified by:
ofin interfaceMutableIntDoubleMapFactory
-
of
public MutableIntDoubleMap of(int key1, double value1, int key2, double value2)
- Specified by:
ofin interfaceMutableIntDoubleMapFactory
-
with
public MutableIntDoubleMap with(int key1, double value1, int key2, double value2)
- Specified by:
within interfaceMutableIntDoubleMapFactory
-
of
public MutableIntDoubleMap of(int key1, double value1, int key2, double value2, int key3, double value3)
- Specified by:
ofin interfaceMutableIntDoubleMapFactory
-
with
public MutableIntDoubleMap with(int key1, double value1, int key2, double value2, int key3, double value3)
- Specified by:
within interfaceMutableIntDoubleMapFactory
-
of
public MutableIntDoubleMap of(int key1, double value1, int key2, double value2, int key3, double value3, int key4, double value4)
- Specified by:
ofin interfaceMutableIntDoubleMapFactory
-
with
public MutableIntDoubleMap with(int key1, double value1, int key2, double value2, int key3, double value3, int key4, double value4)
- Specified by:
within interfaceMutableIntDoubleMapFactory
-
ofInitialCapacity
public MutableIntDoubleMap ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableIntDoubleMapFactory
-
withInitialCapacity
public MutableIntDoubleMap withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableIntDoubleMapFactory
-
ofAll
public MutableIntDoubleMap ofAll(IntDoubleMap map)
- Specified by:
ofAllin interfaceMutableIntDoubleMapFactory
-
withAll
public MutableIntDoubleMap withAll(IntDoubleMap map)
- Specified by:
withAllin interfaceMutableIntDoubleMapFactory
-
from
public <T> MutableIntDoubleMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableIntDoubleMapFactory
-
-