Class MutableIntCharMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableIntCharMapFactoryImpl
-
- All Implemented Interfaces:
MutableIntCharMapFactory
public class MutableIntCharMapFactoryImpl extends Object implements MutableIntCharMapFactory
MutableIntCharMapFactoryImpl is a factory implementation which creates instances of typeMutableIntCharMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableIntCharMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableIntCharMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableIntCharMapempty()<T> MutableIntCharMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)MutableIntCharMapof()MutableIntCharMapof(int key, char value)MutableIntCharMapof(int key1, char value1, int key2, char value2)MutableIntCharMapof(int key1, char value1, int key2, char value2, int key3, char value3)MutableIntCharMapof(int key1, char value1, int key2, char value2, int key3, char value3, int key4, char value4)MutableIntCharMapofAll(IntCharMap map)MutableIntCharMapofInitialCapacity(int capacity)MutableIntCharMapwith()MutableIntCharMapwith(int key, char value)MutableIntCharMapwith(int key1, char value1, int key2, char value2)MutableIntCharMapwith(int key1, char value1, int key2, char value2, int key3, char value3)MutableIntCharMapwith(int key1, char value1, int key2, char value2, int key3, char value3, int key4, char value4)MutableIntCharMapwithAll(IntCharMap map)MutableIntCharMapwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableIntCharMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableIntCharMap empty()
- Specified by:
emptyin interfaceMutableIntCharMapFactory
-
of
public MutableIntCharMap of()
- Specified by:
ofin interfaceMutableIntCharMapFactory
-
with
public MutableIntCharMap with()
- Specified by:
within interfaceMutableIntCharMapFactory
-
with
public MutableIntCharMap with(int key, char value)
- Specified by:
within interfaceMutableIntCharMapFactory
-
of
public MutableIntCharMap of(int key, char value)
- Specified by:
ofin interfaceMutableIntCharMapFactory
-
of
public MutableIntCharMap of(int key1, char value1, int key2, char value2)
- Specified by:
ofin interfaceMutableIntCharMapFactory
-
with
public MutableIntCharMap with(int key1, char value1, int key2, char value2)
- Specified by:
within interfaceMutableIntCharMapFactory
-
of
public MutableIntCharMap of(int key1, char value1, int key2, char value2, int key3, char value3)
- Specified by:
ofin interfaceMutableIntCharMapFactory
-
with
public MutableIntCharMap with(int key1, char value1, int key2, char value2, int key3, char value3)
- Specified by:
within interfaceMutableIntCharMapFactory
-
of
public MutableIntCharMap of(int key1, char value1, int key2, char value2, int key3, char value3, int key4, char value4)
- Specified by:
ofin interfaceMutableIntCharMapFactory
-
with
public MutableIntCharMap with(int key1, char value1, int key2, char value2, int key3, char value3, int key4, char value4)
- Specified by:
within interfaceMutableIntCharMapFactory
-
ofInitialCapacity
public MutableIntCharMap ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableIntCharMapFactory
-
withInitialCapacity
public MutableIntCharMap withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableIntCharMapFactory
-
ofAll
public MutableIntCharMap ofAll(IntCharMap map)
- Specified by:
ofAllin interfaceMutableIntCharMapFactory
-
withAll
public MutableIntCharMap withAll(IntCharMap map)
- Specified by:
withAllin interfaceMutableIntCharMapFactory
-
from
public <T> MutableIntCharMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableIntCharMapFactory
-
-