Class MutableShortLongMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableShortLongMapFactoryImpl
-
- All Implemented Interfaces:
MutableShortLongMapFactory
public class MutableShortLongMapFactoryImpl extends Object implements MutableShortLongMapFactory
MutableShortLongMapFactoryImpl is a factory implementation which creates instances of typeMutableShortLongMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableShortLongMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableShortLongMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableShortLongMapempty()<T> MutableShortLongMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)MutableShortLongMapof()MutableShortLongMapof(short key, long value)MutableShortLongMapof(short key1, long value1, short key2, long value2)MutableShortLongMapof(short key1, long value1, short key2, long value2, short key3, long value3)MutableShortLongMapof(short key1, long value1, short key2, long value2, short key3, long value3, short key4, long value4)MutableShortLongMapofAll(ShortLongMap map)MutableShortLongMapofInitialCapacity(int capacity)MutableShortLongMapwith()MutableShortLongMapwith(short key, long value)MutableShortLongMapwith(short key1, long value1, short key2, long value2)MutableShortLongMapwith(short key1, long value1, short key2, long value2, short key3, long value3)MutableShortLongMapwith(short key1, long value1, short key2, long value2, short key3, long value3, short key4, long value4)MutableShortLongMapwithAll(ShortLongMap map)MutableShortLongMapwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableShortLongMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableShortLongMap empty()
- Specified by:
emptyin interfaceMutableShortLongMapFactory
-
of
public MutableShortLongMap of()
- Specified by:
ofin interfaceMutableShortLongMapFactory
-
with
public MutableShortLongMap with()
- Specified by:
within interfaceMutableShortLongMapFactory
-
with
public MutableShortLongMap with(short key, long value)
- Specified by:
within interfaceMutableShortLongMapFactory
-
of
public MutableShortLongMap of(short key, long value)
- Specified by:
ofin interfaceMutableShortLongMapFactory
-
of
public MutableShortLongMap of(short key1, long value1, short key2, long value2)
- Specified by:
ofin interfaceMutableShortLongMapFactory
-
with
public MutableShortLongMap with(short key1, long value1, short key2, long value2)
- Specified by:
within interfaceMutableShortLongMapFactory
-
of
public MutableShortLongMap of(short key1, long value1, short key2, long value2, short key3, long value3)
- Specified by:
ofin interfaceMutableShortLongMapFactory
-
with
public MutableShortLongMap with(short key1, long value1, short key2, long value2, short key3, long value3)
- Specified by:
within interfaceMutableShortLongMapFactory
-
of
public MutableShortLongMap of(short key1, long value1, short key2, long value2, short key3, long value3, short key4, long value4)
- Specified by:
ofin interfaceMutableShortLongMapFactory
-
with
public MutableShortLongMap with(short key1, long value1, short key2, long value2, short key3, long value3, short key4, long value4)
- Specified by:
within interfaceMutableShortLongMapFactory
-
ofInitialCapacity
public MutableShortLongMap ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableShortLongMapFactory
-
withInitialCapacity
public MutableShortLongMap withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableShortLongMapFactory
-
ofAll
public MutableShortLongMap ofAll(ShortLongMap map)
- Specified by:
ofAllin interfaceMutableShortLongMapFactory
-
withAll
public MutableShortLongMap withAll(ShortLongMap map)
- Specified by:
withAllin interfaceMutableShortLongMapFactory
-
from
public <T> MutableShortLongMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableShortLongMapFactory
-
-