Class MutableFloatDoubleMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableFloatDoubleMapFactoryImpl
-
- All Implemented Interfaces:
MutableFloatDoubleMapFactory
public class MutableFloatDoubleMapFactoryImpl extends Object implements MutableFloatDoubleMapFactory
MutableFloatDoubleMapFactoryImpl is a factory implementation which creates instances of typeMutableFloatDoubleMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableFloatDoubleMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableFloatDoubleMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableFloatDoubleMapempty()<T> MutableFloatDoubleMapfrom(Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)MutableFloatDoubleMapof()MutableFloatDoubleMapof(float key, double value)MutableFloatDoubleMapof(float key1, double value1, float key2, double value2)MutableFloatDoubleMapof(float key1, double value1, float key2, double value2, float key3, double value3)MutableFloatDoubleMapof(float key1, double value1, float key2, double value2, float key3, double value3, float key4, double value4)MutableFloatDoubleMapofAll(FloatDoubleMap map)MutableFloatDoubleMapofInitialCapacity(int capacity)MutableFloatDoubleMapwith()MutableFloatDoubleMapwith(float key, double value)MutableFloatDoubleMapwith(float key1, double value1, float key2, double value2)MutableFloatDoubleMapwith(float key1, double value1, float key2, double value2, float key3, double value3)MutableFloatDoubleMapwith(float key1, double value1, float key2, double value2, float key3, double value3, float key4, double value4)MutableFloatDoubleMapwithAll(FloatDoubleMap map)MutableFloatDoubleMapwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableFloatDoubleMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableFloatDoubleMap empty()
- Specified by:
emptyin interfaceMutableFloatDoubleMapFactory
-
of
public MutableFloatDoubleMap of()
- Specified by:
ofin interfaceMutableFloatDoubleMapFactory
-
with
public MutableFloatDoubleMap with()
- Specified by:
within interfaceMutableFloatDoubleMapFactory
-
with
public MutableFloatDoubleMap with(float key, double value)
- Specified by:
within interfaceMutableFloatDoubleMapFactory
-
of
public MutableFloatDoubleMap of(float key, double value)
- Specified by:
ofin interfaceMutableFloatDoubleMapFactory
-
of
public MutableFloatDoubleMap of(float key1, double value1, float key2, double value2)
- Specified by:
ofin interfaceMutableFloatDoubleMapFactory
-
with
public MutableFloatDoubleMap with(float key1, double value1, float key2, double value2)
- Specified by:
within interfaceMutableFloatDoubleMapFactory
-
of
public MutableFloatDoubleMap of(float key1, double value1, float key2, double value2, float key3, double value3)
- Specified by:
ofin interfaceMutableFloatDoubleMapFactory
-
with
public MutableFloatDoubleMap with(float key1, double value1, float key2, double value2, float key3, double value3)
- Specified by:
within interfaceMutableFloatDoubleMapFactory
-
of
public MutableFloatDoubleMap of(float key1, double value1, float key2, double value2, float key3, double value3, float key4, double value4)
- Specified by:
ofin interfaceMutableFloatDoubleMapFactory
-
with
public MutableFloatDoubleMap with(float key1, double value1, float key2, double value2, float key3, double value3, float key4, double value4)
- Specified by:
within interfaceMutableFloatDoubleMapFactory
-
ofInitialCapacity
public MutableFloatDoubleMap ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableFloatDoubleMapFactory
-
withInitialCapacity
public MutableFloatDoubleMap withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableFloatDoubleMapFactory
-
ofAll
public MutableFloatDoubleMap ofAll(FloatDoubleMap map)
- Specified by:
ofAllin interfaceMutableFloatDoubleMapFactory
-
withAll
public MutableFloatDoubleMap withAll(FloatDoubleMap map)
- Specified by:
withAllin interfaceMutableFloatDoubleMapFactory
-
from
public <T> MutableFloatDoubleMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableFloatDoubleMapFactory
-
-