Class MutableFloatLongMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableFloatLongMapFactoryImpl
-
- All Implemented Interfaces:
MutableFloatLongMapFactory
public class MutableFloatLongMapFactoryImpl extends 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(Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)MutableFloatLongMapof()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)MutableFloatLongMapwith()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)
-
-
-
Field Detail
-
INSTANCE
public static final MutableFloatLongMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableFloatLongMap empty()
- Specified by:
emptyin interfaceMutableFloatLongMapFactory
-
of
public MutableFloatLongMap of()
- Specified by:
ofin interfaceMutableFloatLongMapFactory
-
with
public MutableFloatLongMap with()
- 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)
- Specified by:
ofInitialCapacityin interfaceMutableFloatLongMapFactory
-
withInitialCapacity
public MutableFloatLongMap withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableFloatLongMapFactory
-
ofAll
public MutableFloatLongMap ofAll(FloatLongMap map)
- Specified by:
ofAllin interfaceMutableFloatLongMapFactory
-
withAll
public MutableFloatLongMap withAll(FloatLongMap map)
- Specified by:
withAllin interfaceMutableFloatLongMapFactory
-
from
public <T> MutableFloatLongMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableFloatLongMapFactory
-
-