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