Class MutableCharObjectMapFactoryImpl
java.lang.Object
org.eclipse.collections.impl.map.mutable.primitive.MutableCharObjectMapFactoryImpl
- All Implemented Interfaces:
MutableCharObjectMapFactory
MutableCharObjectMapFactoryImpl is a factory implementation which creates instances of type
MutableCharObjectMap
.
This file was automatically generated from template file mutablePrimitiveObjectMapFactoryImpl.stg.- Since:
- 6.0.
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription<V> MutableCharObjectMap<V>
empty()
<T,
V> MutableCharObjectMap<V> from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Creates anMutableCharObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<V> MutableCharObjectMap<V>
of()
Same asMutableCharObjectMapFactory.empty()
.<V> MutableCharObjectMap<V>
of
(char key, V value) <V> MutableCharObjectMap<V>
of
(char key1, V value1, char key2, V value2) <V> MutableCharObjectMap<V>
of
(char key1, V value1, char key2, V value2, char key3, V value3) <V> MutableCharObjectMap<V>
of
(char key1, V value1, char key2, V value2, char key3, V value3, char key4, V value4) <V> MutableCharObjectMap<V>
ofAll
(CharObjectMap<? extends V> map) <V> MutableCharObjectMap<V>
ofInitialCapacity
(int capacity) Same asMutableCharObjectMapFactory.empty()
.<V> MutableCharObjectMap<V>
with()
Same asMutableCharObjectMapFactory.empty()
.<V> MutableCharObjectMap<V>
with
(char key, V value) <V> MutableCharObjectMap<V>
with
(char key1, V value1, char key2, V value2) <V> MutableCharObjectMap<V>
with
(char key1, V value1, char key2, V value2, char key3, V value3) <V> MutableCharObjectMap<V>
with
(char key1, V value1, char key2, V value2, char key3, V value3, char key4, V value4) <V> MutableCharObjectMap<V>
withAll
(CharObjectMap<? extends V> map) <V> MutableCharObjectMap<V>
withInitialCapacity
(int capacity) Same asMutableCharObjectMapFactory.empty()
.
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
MutableCharObjectMapFactoryImpl
public MutableCharObjectMapFactoryImpl()
-
-
Method Details
-
empty
- Specified by:
empty
in interfaceMutableCharObjectMapFactory
-
of
Description copied from interface:MutableCharObjectMapFactory
Same asMutableCharObjectMapFactory.empty()
.- Specified by:
of
in interfaceMutableCharObjectMapFactory
-
with
Description copied from interface:MutableCharObjectMapFactory
Same asMutableCharObjectMapFactory.empty()
.- Specified by:
with
in interfaceMutableCharObjectMapFactory
-
of
- Specified by:
of
in interfaceMutableCharObjectMapFactory
-
with
- Specified by:
with
in interfaceMutableCharObjectMapFactory
-
of
- Specified by:
of
in interfaceMutableCharObjectMapFactory
-
with
- Specified by:
with
in interfaceMutableCharObjectMapFactory
-
of
public <V> MutableCharObjectMap<V> of(char key1, V value1, char key2, V value2, char key3, V value3) - Specified by:
of
in interfaceMutableCharObjectMapFactory
-
with
public <V> MutableCharObjectMap<V> with(char key1, V value1, char key2, V value2, char key3, V value3) - Specified by:
with
in interfaceMutableCharObjectMapFactory
-
of
public <V> MutableCharObjectMap<V> of(char key1, V value1, char key2, V value2, char key3, V value3, char key4, V value4) - Specified by:
of
in interfaceMutableCharObjectMapFactory
-
with
public <V> MutableCharObjectMap<V> with(char key1, V value1, char key2, V value2, char key3, V value3, char key4, V value4) - Specified by:
with
in interfaceMutableCharObjectMapFactory
-
ofInitialCapacity
Description copied from interface:MutableCharObjectMapFactory
Same asMutableCharObjectMapFactory.empty()
. but takes in an initial capacity- Specified by:
ofInitialCapacity
in interfaceMutableCharObjectMapFactory
-
withInitialCapacity
Description copied from interface:MutableCharObjectMapFactory
Same asMutableCharObjectMapFactory.empty()
. but takes in an initial capacity- Specified by:
withInitialCapacity
in interfaceMutableCharObjectMapFactory
-
ofAll
Description copied from interface:MutableCharObjectMapFactory
- Specified by:
ofAll
in interfaceMutableCharObjectMapFactory
-
withAll
- Specified by:
withAll
in interfaceMutableCharObjectMapFactory
-
from
public <T,V> MutableCharObjectMap<V> from(Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Description copied from interface:MutableCharObjectMapFactory
Creates anMutableCharObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceMutableCharObjectMapFactory
-