Class MutableIntFloatMapFactoryImpl
java.lang.Object
org.eclipse.collections.impl.map.mutable.primitive.MutableIntFloatMapFactoryImpl
- All Implemented Interfaces:
MutableIntFloatMapFactory
MutableIntFloatMapFactoryImpl is a factory implementation which creates instances of type
MutableIntFloatMap
.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionempty()
from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anMutableIntFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.of()
Same asMutableIntFloatMapFactory.empty()
.of
(int key, float value) of
(int key1, float value1, int key2, float value2) of
(int key1, float value1, int key2, float value2, int key3, float value3) of
(int key1, float value1, int key2, float value2, int key3, float value3, int key4, float value4) ofAll
(IntFloatMap map) ofInitialCapacity
(int capacity) Same asMutableIntFloatMapFactory.empty()
.with()
Same asMutableIntFloatMapFactory.empty()
.with
(int key, float value) with
(int key1, float value1, int key2, float value2) with
(int key1, float value1, int key2, float value2, int key3, float value3) with
(int key1, float value1, int key2, float value2, int key3, float value3, int key4, float value4) withAll
(IntFloatMap map) withInitialCapacity
(int capacity) Same asMutableIntFloatMapFactory.empty()
.
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
MutableIntFloatMapFactoryImpl
public MutableIntFloatMapFactoryImpl()
-
-
Method Details
-
empty
- Specified by:
empty
in interfaceMutableIntFloatMapFactory
-
of
Description copied from interface:MutableIntFloatMapFactory
Same asMutableIntFloatMapFactory.empty()
.- Specified by:
of
in interfaceMutableIntFloatMapFactory
-
with
Description copied from interface:MutableIntFloatMapFactory
Same asMutableIntFloatMapFactory.empty()
.- Specified by:
with
in interfaceMutableIntFloatMapFactory
-
with
- Specified by:
with
in interfaceMutableIntFloatMapFactory
-
of
- Specified by:
of
in interfaceMutableIntFloatMapFactory
-
of
- Specified by:
of
in interfaceMutableIntFloatMapFactory
-
with
- Specified by:
with
in interfaceMutableIntFloatMapFactory
-
of
public MutableIntFloatMap of(int key1, float value1, int key2, float value2, int key3, float value3) - Specified by:
of
in interfaceMutableIntFloatMapFactory
-
with
public MutableIntFloatMap with(int key1, float value1, int key2, float value2, int key3, float value3) - Specified by:
with
in interfaceMutableIntFloatMapFactory
-
of
public MutableIntFloatMap of(int key1, float value1, int key2, float value2, int key3, float value3, int key4, float value4) - Specified by:
of
in interfaceMutableIntFloatMapFactory
-
with
public MutableIntFloatMap with(int key1, float value1, int key2, float value2, int key3, float value3, int key4, float value4) - Specified by:
with
in interfaceMutableIntFloatMapFactory
-
ofInitialCapacity
Description copied from interface:MutableIntFloatMapFactory
Same asMutableIntFloatMapFactory.empty()
. but takes in an initial capacity- Specified by:
ofInitialCapacity
in interfaceMutableIntFloatMapFactory
-
withInitialCapacity
Description copied from interface:MutableIntFloatMapFactory
Same asMutableIntFloatMapFactory.empty()
. but takes in an initial capacity- Specified by:
withInitialCapacity
in interfaceMutableIntFloatMapFactory
-
ofAll
Description copied from interface:MutableIntFloatMapFactory
- Specified by:
ofAll
in interfaceMutableIntFloatMapFactory
-
withAll
- Specified by:
withAll
in interfaceMutableIntFloatMapFactory
-
from
public <T> MutableIntFloatMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Description copied from interface:MutableIntFloatMapFactory
Creates anMutableIntFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceMutableIntFloatMapFactory
-