Class MutableShortShortMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableShortShortMapFactoryImpl
-
- All Implemented Interfaces:
MutableShortShortMapFactory
public class MutableShortShortMapFactoryImpl extends Object implements MutableShortShortMapFactory
MutableShortShortMapFactoryImpl is a factory implementation which creates instances of typeMutableShortShortMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableShortShortMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableShortShortMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableShortShortMapempty()<T> MutableShortShortMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)MutableShortShortMapof()MutableShortShortMapof(short key, short value)MutableShortShortMapof(short key1, short value1, short key2, short value2)MutableShortShortMapof(short key1, short value1, short key2, short value2, short key3, short value3)MutableShortShortMapof(short key1, short value1, short key2, short value2, short key3, short value3, short key4, short value4)MutableShortShortMapofAll(ShortShortMap map)MutableShortShortMapofInitialCapacity(int capacity)MutableShortShortMapwith()MutableShortShortMapwith(short key, short value)MutableShortShortMapwith(short key1, short value1, short key2, short value2)MutableShortShortMapwith(short key1, short value1, short key2, short value2, short key3, short value3)MutableShortShortMapwith(short key1, short value1, short key2, short value2, short key3, short value3, short key4, short value4)MutableShortShortMapwithAll(ShortShortMap map)MutableShortShortMapwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableShortShortMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableShortShortMap empty()
- Specified by:
emptyin interfaceMutableShortShortMapFactory
-
of
public MutableShortShortMap of()
- Specified by:
ofin interfaceMutableShortShortMapFactory
-
with
public MutableShortShortMap with()
- Specified by:
within interfaceMutableShortShortMapFactory
-
with
public MutableShortShortMap with(short key, short value)
- Specified by:
within interfaceMutableShortShortMapFactory
-
of
public MutableShortShortMap of(short key, short value)
- Specified by:
ofin interfaceMutableShortShortMapFactory
-
of
public MutableShortShortMap of(short key1, short value1, short key2, short value2)
- Specified by:
ofin interfaceMutableShortShortMapFactory
-
with
public MutableShortShortMap with(short key1, short value1, short key2, short value2)
- Specified by:
within interfaceMutableShortShortMapFactory
-
of
public MutableShortShortMap of(short key1, short value1, short key2, short value2, short key3, short value3)
- Specified by:
ofin interfaceMutableShortShortMapFactory
-
with
public MutableShortShortMap with(short key1, short value1, short key2, short value2, short key3, short value3)
- Specified by:
within interfaceMutableShortShortMapFactory
-
of
public MutableShortShortMap of(short key1, short value1, short key2, short value2, short key3, short value3, short key4, short value4)
- Specified by:
ofin interfaceMutableShortShortMapFactory
-
with
public MutableShortShortMap with(short key1, short value1, short key2, short value2, short key3, short value3, short key4, short value4)
- Specified by:
within interfaceMutableShortShortMapFactory
-
ofInitialCapacity
public MutableShortShortMap ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableShortShortMapFactory
-
withInitialCapacity
public MutableShortShortMap withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableShortShortMapFactory
-
ofAll
public MutableShortShortMap ofAll(ShortShortMap map)
- Specified by:
ofAllin interfaceMutableShortShortMapFactory
-
withAll
public MutableShortShortMap withAll(ShortShortMap map)
- Specified by:
withAllin interfaceMutableShortShortMapFactory
-
from
public <T> MutableShortShortMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableShortShortMapFactory
-
-