Class MutableFloatDoubleMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableFloatDoubleMapFactoryImpl
-
- All Implemented Interfaces:
MutableFloatDoubleMapFactory
public class MutableFloatDoubleMapFactoryImpl extends java.lang.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(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableFloatDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableFloatDoubleMapof()Same asMutableFloatDoubleMapFactory.empty().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)Same asMutableFloatDoubleMapFactory.empty().MutableFloatDoubleMapwith()Same asMutableFloatDoubleMapFactory.empty().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)Same asMutableFloatDoubleMapFactory.empty().
-
-
-
Field Detail
-
INSTANCE
public static final MutableFloatDoubleMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableFloatDoubleMap empty()
- Specified by:
emptyin interfaceMutableFloatDoubleMapFactory
-
of
public MutableFloatDoubleMap of()
Description copied from interface:MutableFloatDoubleMapFactorySame asMutableFloatDoubleMapFactory.empty().- Specified by:
ofin interfaceMutableFloatDoubleMapFactory
-
with
public MutableFloatDoubleMap with()
Description copied from interface:MutableFloatDoubleMapFactorySame asMutableFloatDoubleMapFactory.empty().- 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)
Description copied from interface:MutableFloatDoubleMapFactorySame asMutableFloatDoubleMapFactory.empty(). but takes in an initial capacity- Specified by:
ofInitialCapacityin interfaceMutableFloatDoubleMapFactory
-
withInitialCapacity
public MutableFloatDoubleMap withInitialCapacity(int capacity)
Description copied from interface:MutableFloatDoubleMapFactorySame asMutableFloatDoubleMapFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableFloatDoubleMapFactory
-
ofAll
public MutableFloatDoubleMap ofAll(FloatDoubleMap map)
Description copied from interface:MutableFloatDoubleMapFactory- Specified by:
ofAllin interfaceMutableFloatDoubleMapFactory
-
withAll
public MutableFloatDoubleMap withAll(FloatDoubleMap map)
- Specified by:
withAllin interfaceMutableFloatDoubleMapFactory
-
from
public <T> MutableFloatDoubleMap from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Description copied from interface:MutableFloatDoubleMapFactoryCreates anMutableFloatDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceMutableFloatDoubleMapFactory
-
-