Class MutableDoubleShortMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableDoubleShortMapFactoryImpl
-
- All Implemented Interfaces:
MutableDoubleShortMapFactory
public class MutableDoubleShortMapFactoryImpl extends Object implements MutableDoubleShortMapFactory
MutableDoubleShortMapFactoryImpl is a factory implementation which creates instances of typeMutableDoubleShortMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableDoubleShortMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableDoubleShortMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableDoubleShortMapempty()<T> MutableDoubleShortMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)MutableDoubleShortMapof()MutableDoubleShortMapof(double key, short value)MutableDoubleShortMapof(double key1, short value1, double key2, short value2)MutableDoubleShortMapof(double key1, short value1, double key2, short value2, double key3, short value3)MutableDoubleShortMapof(double key1, short value1, double key2, short value2, double key3, short value3, double key4, short value4)MutableDoubleShortMapofAll(DoubleShortMap map)MutableDoubleShortMapofInitialCapacity(int capacity)MutableDoubleShortMapwith()MutableDoubleShortMapwith(double key, short value)MutableDoubleShortMapwith(double key1, short value1, double key2, short value2)MutableDoubleShortMapwith(double key1, short value1, double key2, short value2, double key3, short value3)MutableDoubleShortMapwith(double key1, short value1, double key2, short value2, double key3, short value3, double key4, short value4)MutableDoubleShortMapwithAll(DoubleShortMap map)MutableDoubleShortMapwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableDoubleShortMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableDoubleShortMap empty()
- Specified by:
emptyin interfaceMutableDoubleShortMapFactory
-
of
public MutableDoubleShortMap of()
- Specified by:
ofin interfaceMutableDoubleShortMapFactory
-
with
public MutableDoubleShortMap with()
- Specified by:
within interfaceMutableDoubleShortMapFactory
-
with
public MutableDoubleShortMap with(double key, short value)
- Specified by:
within interfaceMutableDoubleShortMapFactory
-
of
public MutableDoubleShortMap of(double key, short value)
- Specified by:
ofin interfaceMutableDoubleShortMapFactory
-
of
public MutableDoubleShortMap of(double key1, short value1, double key2, short value2)
- Specified by:
ofin interfaceMutableDoubleShortMapFactory
-
with
public MutableDoubleShortMap with(double key1, short value1, double key2, short value2)
- Specified by:
within interfaceMutableDoubleShortMapFactory
-
of
public MutableDoubleShortMap of(double key1, short value1, double key2, short value2, double key3, short value3)
- Specified by:
ofin interfaceMutableDoubleShortMapFactory
-
with
public MutableDoubleShortMap with(double key1, short value1, double key2, short value2, double key3, short value3)
- Specified by:
within interfaceMutableDoubleShortMapFactory
-
of
public MutableDoubleShortMap of(double key1, short value1, double key2, short value2, double key3, short value3, double key4, short value4)
- Specified by:
ofin interfaceMutableDoubleShortMapFactory
-
with
public MutableDoubleShortMap with(double key1, short value1, double key2, short value2, double key3, short value3, double key4, short value4)
- Specified by:
within interfaceMutableDoubleShortMapFactory
-
ofInitialCapacity
public MutableDoubleShortMap ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableDoubleShortMapFactory
-
withInitialCapacity
public MutableDoubleShortMap withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableDoubleShortMapFactory
-
ofAll
public MutableDoubleShortMap ofAll(DoubleShortMap map)
- Specified by:
ofAllin interfaceMutableDoubleShortMapFactory
-
withAll
public MutableDoubleShortMap withAll(DoubleShortMap map)
- Specified by:
withAllin interfaceMutableDoubleShortMapFactory
-
from
public <T> MutableDoubleShortMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableDoubleShortMapFactory
-
-