Class MutableByteShortMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableByteShortMapFactoryImpl
-
- All Implemented Interfaces:
MutableByteShortMapFactory
public class MutableByteShortMapFactoryImpl extends java.lang.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(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableByteShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteShortMapof()Same asMutableByteShortMapFactory.empty().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)Same asMutableByteShortMapFactory.empty().MutableByteShortMapwith()Same asMutableByteShortMapFactory.empty().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)Same asMutableByteShortMapFactory.empty().
-
-
-
Field Detail
-
INSTANCE
public static final MutableByteShortMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableByteShortMap empty()
- Specified by:
emptyin interfaceMutableByteShortMapFactory
-
of
public MutableByteShortMap of()
Description copied from interface:MutableByteShortMapFactorySame asMutableByteShortMapFactory.empty().- Specified by:
ofin interfaceMutableByteShortMapFactory
-
with
public MutableByteShortMap with()
Description copied from interface:MutableByteShortMapFactorySame asMutableByteShortMapFactory.empty().- 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)
Description copied from interface:MutableByteShortMapFactorySame asMutableByteShortMapFactory.empty(). but takes in an initial capacity- Specified by:
ofInitialCapacityin interfaceMutableByteShortMapFactory
-
withInitialCapacity
public MutableByteShortMap withInitialCapacity(int capacity)
Description copied from interface:MutableByteShortMapFactorySame asMutableByteShortMapFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableByteShortMapFactory
-
ofAll
public MutableByteShortMap ofAll(ByteShortMap map)
Description copied from interface:MutableByteShortMapFactory- Specified by:
ofAllin interfaceMutableByteShortMapFactory
-
withAll
public MutableByteShortMap withAll(ByteShortMap map)
- Specified by:
withAllin interfaceMutableByteShortMapFactory
-
from
public <T> MutableByteShortMap from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Description copied from interface:MutableByteShortMapFactoryCreates anMutableByteShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceMutableByteShortMapFactory
-
-