Class MutableFloatBooleanMapFactoryImpl
java.lang.Object
org.eclipse.collections.impl.map.mutable.primitive.MutableFloatBooleanMapFactoryImpl
- All Implemented Interfaces:
MutableFloatBooleanMapFactory
public class MutableFloatBooleanMapFactoryImpl
extends Object
implements MutableFloatBooleanMapFactory
MutableFloatBooleanMapFactoryImpl is a factory implementation which creates instances of type
MutableFloatBooleanMap
.
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, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableFloatBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.of()
of
(float key, boolean value) of
(float key1, boolean value1, float key2, boolean value2) of
(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3) of
(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3, float key4, boolean value4) ofAll
(FloatBooleanMap map) ofInitialCapacity
(int capacity) with()
with
(float key, boolean value) with
(float key1, boolean value1, float key2, boolean value2) with
(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3) with
(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3, float key4, boolean value4) withAll
(FloatBooleanMap map) withInitialCapacity
(int capacity)
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
MutableFloatBooleanMapFactoryImpl
public MutableFloatBooleanMapFactoryImpl()
-
-
Method Details
-
empty
- Specified by:
empty
in interfaceMutableFloatBooleanMapFactory
-
of
Description copied from interface:MutableFloatBooleanMapFactory
- Specified by:
of
in interfaceMutableFloatBooleanMapFactory
-
with
Description copied from interface:MutableFloatBooleanMapFactory
- Specified by:
with
in interfaceMutableFloatBooleanMapFactory
-
with
- Specified by:
with
in interfaceMutableFloatBooleanMapFactory
-
of
- Specified by:
of
in interfaceMutableFloatBooleanMapFactory
-
of
- Specified by:
of
in interfaceMutableFloatBooleanMapFactory
-
with
- Specified by:
with
in interfaceMutableFloatBooleanMapFactory
-
of
public MutableFloatBooleanMap of(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3) - Specified by:
of
in interfaceMutableFloatBooleanMapFactory
-
with
public MutableFloatBooleanMap with(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3) - Specified by:
with
in interfaceMutableFloatBooleanMapFactory
-
of
public MutableFloatBooleanMap of(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3, float key4, boolean value4) - Specified by:
of
in interfaceMutableFloatBooleanMapFactory
-
with
public MutableFloatBooleanMap with(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3, float key4, boolean value4) - Specified by:
with
in interfaceMutableFloatBooleanMapFactory
-
ofInitialCapacity
Description copied from interface:MutableFloatBooleanMapFactory
Same asMutableFloatBooleanMapFactory.empty()
. but takes in an initial capacity- Specified by:
ofInitialCapacity
in interfaceMutableFloatBooleanMapFactory
-
withInitialCapacity
Description copied from interface:MutableFloatBooleanMapFactory
Same asMutableFloatBooleanMapFactory.empty()
. but takes in an initial capacity- Specified by:
withInitialCapacity
in interfaceMutableFloatBooleanMapFactory
-
ofAll
Description copied from interface:MutableFloatBooleanMapFactory
- Specified by:
ofAll
in interfaceMutableFloatBooleanMapFactory
-
withAll
- Specified by:
withAll
in interfaceMutableFloatBooleanMapFactory
-
from
public <T> MutableFloatBooleanMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Description copied from interface:MutableFloatBooleanMapFactory
Creates anMutableFloatBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceMutableFloatBooleanMapFactory
-