Class MutableShortCharMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableShortCharMapFactoryImpl
-
- All Implemented Interfaces:
MutableShortCharMapFactory
public class MutableShortCharMapFactoryImpl extends Object implements MutableShortCharMapFactory
MutableShortCharMapFactoryImpl is a factory implementation which creates instances of typeMutableShortCharMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableShortCharMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableShortCharMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableShortCharMapempty()<T> MutableShortCharMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)MutableShortCharMapof()MutableShortCharMapof(short key, char value)MutableShortCharMapof(short key1, char value1, short key2, char value2)MutableShortCharMapof(short key1, char value1, short key2, char value2, short key3, char value3)MutableShortCharMapof(short key1, char value1, short key2, char value2, short key3, char value3, short key4, char value4)MutableShortCharMapofAll(ShortCharMap map)MutableShortCharMapofInitialCapacity(int capacity)MutableShortCharMapwith()MutableShortCharMapwith(short key, char value)MutableShortCharMapwith(short key1, char value1, short key2, char value2)MutableShortCharMapwith(short key1, char value1, short key2, char value2, short key3, char value3)MutableShortCharMapwith(short key1, char value1, short key2, char value2, short key3, char value3, short key4, char value4)MutableShortCharMapwithAll(ShortCharMap map)MutableShortCharMapwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableShortCharMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableShortCharMap empty()
- Specified by:
emptyin interfaceMutableShortCharMapFactory
-
of
public MutableShortCharMap of()
- Specified by:
ofin interfaceMutableShortCharMapFactory
-
with
public MutableShortCharMap with()
- Specified by:
within interfaceMutableShortCharMapFactory
-
with
public MutableShortCharMap with(short key, char value)
- Specified by:
within interfaceMutableShortCharMapFactory
-
of
public MutableShortCharMap of(short key, char value)
- Specified by:
ofin interfaceMutableShortCharMapFactory
-
of
public MutableShortCharMap of(short key1, char value1, short key2, char value2)
- Specified by:
ofin interfaceMutableShortCharMapFactory
-
with
public MutableShortCharMap with(short key1, char value1, short key2, char value2)
- Specified by:
within interfaceMutableShortCharMapFactory
-
of
public MutableShortCharMap of(short key1, char value1, short key2, char value2, short key3, char value3)
- Specified by:
ofin interfaceMutableShortCharMapFactory
-
with
public MutableShortCharMap with(short key1, char value1, short key2, char value2, short key3, char value3)
- Specified by:
within interfaceMutableShortCharMapFactory
-
of
public MutableShortCharMap of(short key1, char value1, short key2, char value2, short key3, char value3, short key4, char value4)
- Specified by:
ofin interfaceMutableShortCharMapFactory
-
with
public MutableShortCharMap with(short key1, char value1, short key2, char value2, short key3, char value3, short key4, char value4)
- Specified by:
within interfaceMutableShortCharMapFactory
-
ofInitialCapacity
public MutableShortCharMap ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableShortCharMapFactory
-
withInitialCapacity
public MutableShortCharMap withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableShortCharMapFactory
-
ofAll
public MutableShortCharMap ofAll(ShortCharMap map)
- Specified by:
ofAllin interfaceMutableShortCharMapFactory
-
withAll
public MutableShortCharMap withAll(ShortCharMap map)
- Specified by:
withAllin interfaceMutableShortCharMapFactory
-
from
public <T> MutableShortCharMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableShortCharMapFactory
-
-