Class MutableShortByteMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableShortByteMapFactoryImpl
-
- All Implemented Interfaces:
MutableShortByteMapFactory
public class MutableShortByteMapFactoryImpl extends Object implements MutableShortByteMapFactory
MutableShortByteMapFactoryImpl is a factory implementation which creates instances of typeMutableShortByteMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableShortByteMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableShortByteMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableShortByteMapempty()<T> MutableShortByteMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)MutableShortByteMapof()MutableShortByteMapof(short key, byte value)MutableShortByteMapof(short key1, byte value1, short key2, byte value2)MutableShortByteMapof(short key1, byte value1, short key2, byte value2, short key3, byte value3)MutableShortByteMapof(short key1, byte value1, short key2, byte value2, short key3, byte value3, short key4, byte value4)MutableShortByteMapofAll(ShortByteMap map)MutableShortByteMapofInitialCapacity(int capacity)MutableShortByteMapwith()MutableShortByteMapwith(short key, byte value)MutableShortByteMapwith(short key1, byte value1, short key2, byte value2)MutableShortByteMapwith(short key1, byte value1, short key2, byte value2, short key3, byte value3)MutableShortByteMapwith(short key1, byte value1, short key2, byte value2, short key3, byte value3, short key4, byte value4)MutableShortByteMapwithAll(ShortByteMap map)MutableShortByteMapwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableShortByteMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableShortByteMap empty()
- Specified by:
emptyin interfaceMutableShortByteMapFactory
-
of
public MutableShortByteMap of()
- Specified by:
ofin interfaceMutableShortByteMapFactory
-
with
public MutableShortByteMap with()
- Specified by:
within interfaceMutableShortByteMapFactory
-
with
public MutableShortByteMap with(short key, byte value)
- Specified by:
within interfaceMutableShortByteMapFactory
-
of
public MutableShortByteMap of(short key, byte value)
- Specified by:
ofin interfaceMutableShortByteMapFactory
-
of
public MutableShortByteMap of(short key1, byte value1, short key2, byte value2)
- Specified by:
ofin interfaceMutableShortByteMapFactory
-
with
public MutableShortByteMap with(short key1, byte value1, short key2, byte value2)
- Specified by:
within interfaceMutableShortByteMapFactory
-
of
public MutableShortByteMap of(short key1, byte value1, short key2, byte value2, short key3, byte value3)
- Specified by:
ofin interfaceMutableShortByteMapFactory
-
with
public MutableShortByteMap with(short key1, byte value1, short key2, byte value2, short key3, byte value3)
- Specified by:
within interfaceMutableShortByteMapFactory
-
of
public MutableShortByteMap of(short key1, byte value1, short key2, byte value2, short key3, byte value3, short key4, byte value4)
- Specified by:
ofin interfaceMutableShortByteMapFactory
-
with
public MutableShortByteMap with(short key1, byte value1, short key2, byte value2, short key3, byte value3, short key4, byte value4)
- Specified by:
within interfaceMutableShortByteMapFactory
-
ofInitialCapacity
public MutableShortByteMap ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableShortByteMapFactory
-
withInitialCapacity
public MutableShortByteMap withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableShortByteMapFactory
-
ofAll
public MutableShortByteMap ofAll(ShortByteMap map)
- Specified by:
ofAllin interfaceMutableShortByteMapFactory
-
withAll
public MutableShortByteMap withAll(ShortByteMap map)
- Specified by:
withAllin interfaceMutableShortByteMapFactory
-
from
public <T> MutableShortByteMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableShortByteMapFactory
-
-