Class MutableByteDoubleMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableByteDoubleMapFactoryImpl
-
- All Implemented Interfaces:
MutableByteDoubleMapFactory
public class MutableByteDoubleMapFactoryImpl extends java.lang.Object implements MutableByteDoubleMapFactory
MutableByteDoubleMapFactoryImpl is a factory implementation which creates instances of typeMutableByteDoubleMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableByteDoubleMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableByteDoubleMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableByteDoubleMapempty()<T> MutableByteDoubleMapfrom(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableByteDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteDoubleMapof()Same asMutableByteDoubleMapFactory.empty().MutableByteDoubleMapof(byte key, double value)MutableByteDoubleMapof(byte key1, double value1, byte key2, double value2)MutableByteDoubleMapof(byte key1, double value1, byte key2, double value2, byte key3, double value3)MutableByteDoubleMapof(byte key1, double value1, byte key2, double value2, byte key3, double value3, byte key4, double value4)MutableByteDoubleMapofAll(ByteDoubleMap map)MutableByteDoubleMapofInitialCapacity(int capacity)Same asMutableByteDoubleMapFactory.empty().MutableByteDoubleMapwith()Same asMutableByteDoubleMapFactory.empty().MutableByteDoubleMapwith(byte key, double value)MutableByteDoubleMapwith(byte key1, double value1, byte key2, double value2)MutableByteDoubleMapwith(byte key1, double value1, byte key2, double value2, byte key3, double value3)MutableByteDoubleMapwith(byte key1, double value1, byte key2, double value2, byte key3, double value3, byte key4, double value4)MutableByteDoubleMapwithAll(ByteDoubleMap map)MutableByteDoubleMapwithInitialCapacity(int capacity)Same asMutableByteDoubleMapFactory.empty().
-
-
-
Field Detail
-
INSTANCE
public static final MutableByteDoubleMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableByteDoubleMap empty()
- Specified by:
emptyin interfaceMutableByteDoubleMapFactory
-
of
public MutableByteDoubleMap of()
Description copied from interface:MutableByteDoubleMapFactorySame asMutableByteDoubleMapFactory.empty().- Specified by:
ofin interfaceMutableByteDoubleMapFactory
-
with
public MutableByteDoubleMap with()
Description copied from interface:MutableByteDoubleMapFactorySame asMutableByteDoubleMapFactory.empty().- Specified by:
within interfaceMutableByteDoubleMapFactory
-
with
public MutableByteDoubleMap with(byte key, double value)
- Specified by:
within interfaceMutableByteDoubleMapFactory
-
of
public MutableByteDoubleMap of(byte key, double value)
- Specified by:
ofin interfaceMutableByteDoubleMapFactory
-
of
public MutableByteDoubleMap of(byte key1, double value1, byte key2, double value2)
- Specified by:
ofin interfaceMutableByteDoubleMapFactory
-
with
public MutableByteDoubleMap with(byte key1, double value1, byte key2, double value2)
- Specified by:
within interfaceMutableByteDoubleMapFactory
-
of
public MutableByteDoubleMap of(byte key1, double value1, byte key2, double value2, byte key3, double value3)
- Specified by:
ofin interfaceMutableByteDoubleMapFactory
-
with
public MutableByteDoubleMap with(byte key1, double value1, byte key2, double value2, byte key3, double value3)
- Specified by:
within interfaceMutableByteDoubleMapFactory
-
of
public MutableByteDoubleMap of(byte key1, double value1, byte key2, double value2, byte key3, double value3, byte key4, double value4)
- Specified by:
ofin interfaceMutableByteDoubleMapFactory
-
with
public MutableByteDoubleMap with(byte key1, double value1, byte key2, double value2, byte key3, double value3, byte key4, double value4)
- Specified by:
within interfaceMutableByteDoubleMapFactory
-
ofInitialCapacity
public MutableByteDoubleMap ofInitialCapacity(int capacity)
Description copied from interface:MutableByteDoubleMapFactorySame asMutableByteDoubleMapFactory.empty(). but takes in an initial capacity- Specified by:
ofInitialCapacityin interfaceMutableByteDoubleMapFactory
-
withInitialCapacity
public MutableByteDoubleMap withInitialCapacity(int capacity)
Description copied from interface:MutableByteDoubleMapFactorySame asMutableByteDoubleMapFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableByteDoubleMapFactory
-
ofAll
public MutableByteDoubleMap ofAll(ByteDoubleMap map)
Description copied from interface:MutableByteDoubleMapFactory- Specified by:
ofAllin interfaceMutableByteDoubleMapFactory
-
withAll
public MutableByteDoubleMap withAll(ByteDoubleMap map)
- Specified by:
withAllin interfaceMutableByteDoubleMapFactory
-
from
public <T> MutableByteDoubleMap from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Description copied from interface:MutableByteDoubleMapFactoryCreates anMutableByteDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceMutableByteDoubleMapFactory
-
-