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