Class MutableFloatLongMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableFloatLongMapFactoryImpl
-
- All Implemented Interfaces:
MutableFloatLongMapFactory
public class MutableFloatLongMapFactoryImpl extends java.lang.Object implements MutableFloatLongMapFactory
MutableFloatLongMapFactoryImpl is a factory implementation which creates instances of typeMutableFloatLongMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableFloatLongMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableFloatLongMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableFloatLongMapempty()<T> MutableFloatLongMapfrom(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableFloatLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableFloatLongMapof()Same asMutableFloatLongMapFactory.empty().MutableFloatLongMapof(float key, long value)MutableFloatLongMapof(float key1, long value1, float key2, long value2)MutableFloatLongMapof(float key1, long value1, float key2, long value2, float key3, long value3)MutableFloatLongMapof(float key1, long value1, float key2, long value2, float key3, long value3, float key4, long value4)MutableFloatLongMapofAll(FloatLongMap map)MutableFloatLongMapofInitialCapacity(int capacity)Same asMutableFloatLongMapFactory.empty().MutableFloatLongMapwith()Same asMutableFloatLongMapFactory.empty().MutableFloatLongMapwith(float key, long value)MutableFloatLongMapwith(float key1, long value1, float key2, long value2)MutableFloatLongMapwith(float key1, long value1, float key2, long value2, float key3, long value3)MutableFloatLongMapwith(float key1, long value1, float key2, long value2, float key3, long value3, float key4, long value4)MutableFloatLongMapwithAll(FloatLongMap map)MutableFloatLongMapwithInitialCapacity(int capacity)Same asMutableFloatLongMapFactory.empty().
-
-
-
Field Detail
-
INSTANCE
public static final MutableFloatLongMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableFloatLongMap empty()
- Specified by:
emptyin interfaceMutableFloatLongMapFactory
-
of
public MutableFloatLongMap of()
Description copied from interface:MutableFloatLongMapFactorySame asMutableFloatLongMapFactory.empty().- Specified by:
ofin interfaceMutableFloatLongMapFactory
-
with
public MutableFloatLongMap with()
Description copied from interface:MutableFloatLongMapFactorySame asMutableFloatLongMapFactory.empty().- Specified by:
within interfaceMutableFloatLongMapFactory
-
with
public MutableFloatLongMap with(float key, long value)
- Specified by:
within interfaceMutableFloatLongMapFactory
-
of
public MutableFloatLongMap of(float key, long value)
- Specified by:
ofin interfaceMutableFloatLongMapFactory
-
of
public MutableFloatLongMap of(float key1, long value1, float key2, long value2)
- Specified by:
ofin interfaceMutableFloatLongMapFactory
-
with
public MutableFloatLongMap with(float key1, long value1, float key2, long value2)
- Specified by:
within interfaceMutableFloatLongMapFactory
-
of
public MutableFloatLongMap of(float key1, long value1, float key2, long value2, float key3, long value3)
- Specified by:
ofin interfaceMutableFloatLongMapFactory
-
with
public MutableFloatLongMap with(float key1, long value1, float key2, long value2, float key3, long value3)
- Specified by:
within interfaceMutableFloatLongMapFactory
-
of
public MutableFloatLongMap of(float key1, long value1, float key2, long value2, float key3, long value3, float key4, long value4)
- Specified by:
ofin interfaceMutableFloatLongMapFactory
-
with
public MutableFloatLongMap with(float key1, long value1, float key2, long value2, float key3, long value3, float key4, long value4)
- Specified by:
within interfaceMutableFloatLongMapFactory
-
ofInitialCapacity
public MutableFloatLongMap ofInitialCapacity(int capacity)
Description copied from interface:MutableFloatLongMapFactorySame asMutableFloatLongMapFactory.empty(). but takes in an initial capacity- Specified by:
ofInitialCapacityin interfaceMutableFloatLongMapFactory
-
withInitialCapacity
public MutableFloatLongMap withInitialCapacity(int capacity)
Description copied from interface:MutableFloatLongMapFactorySame asMutableFloatLongMapFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableFloatLongMapFactory
-
ofAll
public MutableFloatLongMap ofAll(FloatLongMap map)
Description copied from interface:MutableFloatLongMapFactory- Specified by:
ofAllin interfaceMutableFloatLongMapFactory
-
withAll
public MutableFloatLongMap withAll(FloatLongMap map)
- Specified by:
withAllin interfaceMutableFloatLongMapFactory
-
from
public <T> MutableFloatLongMap from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Description copied from interface:MutableFloatLongMapFactoryCreates anMutableFloatLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceMutableFloatLongMapFactory
-
-