Class MutableObjectCharMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableObjectCharMapFactoryImpl
-
- All Implemented Interfaces:
MutableObjectCharMapFactory
public class MutableObjectCharMapFactoryImpl extends Object implements MutableObjectCharMapFactory
MutableObjectCharMapFactoryImpl is a factory implementation which creates instances of typeMutableObjectCharMap. This file was automatically generated from template file mutableObjectPrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableObjectCharMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableObjectCharMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <K> MutableObjectCharMap<K>empty()<T,K>
MutableObjectCharMap<K>from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, CharFunction<? super T> valueFunction)<K> MutableObjectCharMap<K>of()<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)<K> MutableObjectCharMap<K>with()<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)
-
-
-
Field Detail
-
INSTANCE
public static final MutableObjectCharMapFactory INSTANCE
-
-
Method Detail
-
empty
public <K> MutableObjectCharMap<K> empty()
- Specified by:
emptyin interfaceMutableObjectCharMapFactory
-
of
public <K> MutableObjectCharMap<K> of()
- Specified by:
ofin interfaceMutableObjectCharMapFactory
-
with
public <K> MutableObjectCharMap<K> with()
- Specified by:
within interfaceMutableObjectCharMapFactory
-
of
public <K> MutableObjectCharMap<K> of(K key, char value)
- Specified by:
ofin interfaceMutableObjectCharMapFactory
-
with
public <K> MutableObjectCharMap<K> with(K key, char value)
- Specified by:
within interfaceMutableObjectCharMapFactory
-
of
public <K> MutableObjectCharMap<K> of(K key1, char value1, K key2, char value2)
- Specified by:
ofin interfaceMutableObjectCharMapFactory
-
with
public <K> MutableObjectCharMap<K> with(K key1, char value1, K key2, char value2)
- Specified by:
within interfaceMutableObjectCharMapFactory
-
of
public <K> MutableObjectCharMap<K> of(K key1, char value1, K key2, char value2, K key3, char value3)
- Specified by:
ofin interfaceMutableObjectCharMapFactory
-
with
public <K> MutableObjectCharMap<K> with(K key1, char value1, K key2, char value2, K key3, char value3)
- Specified by:
within 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:
ofin 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:
within interfaceMutableObjectCharMapFactory
-
ofInitialCapacity
public <K> MutableObjectCharMap<K> ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableObjectCharMapFactory
-
withInitialCapacity
public <K> MutableObjectCharMap<K> withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableObjectCharMapFactory
-
ofAll
public <K> MutableObjectCharMap<K> ofAll(ObjectCharMap<? extends K> map)
- Specified by:
ofAllin interfaceMutableObjectCharMapFactory
-
withAll
public <K> MutableObjectCharMap<K> withAll(ObjectCharMap<? extends K> map)
- Specified by:
withAllin interfaceMutableObjectCharMapFactory
-
from
public <T,K> MutableObjectCharMap<K> from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, CharFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableObjectCharMapFactory
-
-