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