Class MutableByteShortMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableByteShortMapFactoryImpl
-
- All Implemented Interfaces:
MutableByteShortMapFactory
public class MutableByteShortMapFactoryImpl extends Object implements MutableByteShortMapFactory
MutableByteShortMapFactoryImpl is a factory implementation which creates instances of typeMutableByteShortMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableByteShortMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableByteShortMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableByteShortMapempty()<T> MutableByteShortMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)MutableByteShortMapof()MutableByteShortMapof(byte key, short value)MutableByteShortMapof(byte key1, short value1, byte key2, short value2)MutableByteShortMapof(byte key1, short value1, byte key2, short value2, byte key3, short value3)MutableByteShortMapof(byte key1, short value1, byte key2, short value2, byte key3, short value3, byte key4, short value4)MutableByteShortMapofAll(ByteShortMap map)MutableByteShortMapofInitialCapacity(int capacity)MutableByteShortMapwith()MutableByteShortMapwith(byte key, short value)MutableByteShortMapwith(byte key1, short value1, byte key2, short value2)MutableByteShortMapwith(byte key1, short value1, byte key2, short value2, byte key3, short value3)MutableByteShortMapwith(byte key1, short value1, byte key2, short value2, byte key3, short value3, byte key4, short value4)MutableByteShortMapwithAll(ByteShortMap map)MutableByteShortMapwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableByteShortMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableByteShortMap empty()
- Specified by:
emptyin interfaceMutableByteShortMapFactory
-
of
public MutableByteShortMap of()
- Specified by:
ofin interfaceMutableByteShortMapFactory
-
with
public MutableByteShortMap with()
- Specified by:
within interfaceMutableByteShortMapFactory
-
with
public MutableByteShortMap with(byte key, short value)
- Specified by:
within interfaceMutableByteShortMapFactory
-
of
public MutableByteShortMap of(byte key, short value)
- Specified by:
ofin interfaceMutableByteShortMapFactory
-
of
public MutableByteShortMap of(byte key1, short value1, byte key2, short value2)
- Specified by:
ofin interfaceMutableByteShortMapFactory
-
with
public MutableByteShortMap with(byte key1, short value1, byte key2, short value2)
- Specified by:
within interfaceMutableByteShortMapFactory
-
of
public MutableByteShortMap of(byte key1, short value1, byte key2, short value2, byte key3, short value3)
- Specified by:
ofin interfaceMutableByteShortMapFactory
-
with
public MutableByteShortMap with(byte key1, short value1, byte key2, short value2, byte key3, short value3)
- Specified by:
within interfaceMutableByteShortMapFactory
-
of
public MutableByteShortMap of(byte key1, short value1, byte key2, short value2, byte key3, short value3, byte key4, short value4)
- Specified by:
ofin interfaceMutableByteShortMapFactory
-
with
public MutableByteShortMap with(byte key1, short value1, byte key2, short value2, byte key3, short value3, byte key4, short value4)
- Specified by:
within interfaceMutableByteShortMapFactory
-
ofInitialCapacity
public MutableByteShortMap ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableByteShortMapFactory
-
withInitialCapacity
public MutableByteShortMap withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableByteShortMapFactory
-
ofAll
public MutableByteShortMap ofAll(ByteShortMap map)
- Specified by:
ofAllin interfaceMutableByteShortMapFactory
-
withAll
public MutableByteShortMap withAll(ByteShortMap map)
- Specified by:
withAllin interfaceMutableByteShortMapFactory
-
from
public <T> MutableByteShortMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableByteShortMapFactory
-
-