Class MutableDoubleByteMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableDoubleByteMapFactoryImpl
-
- All Implemented Interfaces:
MutableDoubleByteMapFactory
public class MutableDoubleByteMapFactoryImpl extends java.lang.Object implements MutableDoubleByteMapFactory
MutableDoubleByteMapFactoryImpl is a factory implementation which creates instances of typeMutableDoubleByteMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableDoubleByteMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableDoubleByteMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableDoubleByteMapempty()<T> MutableDoubleByteMapfrom(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableDoubleByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleByteMapof()Same asMutableDoubleByteMapFactory.empty().MutableDoubleByteMapof(double key, byte value)MutableDoubleByteMapof(double key1, byte value1, double key2, byte value2)MutableDoubleByteMapof(double key1, byte value1, double key2, byte value2, double key3, byte value3)MutableDoubleByteMapof(double key1, byte value1, double key2, byte value2, double key3, byte value3, double key4, byte value4)MutableDoubleByteMapofAll(DoubleByteMap map)MutableDoubleByteMapofInitialCapacity(int capacity)Same asMutableDoubleByteMapFactory.empty().MutableDoubleByteMapwith()Same asMutableDoubleByteMapFactory.empty().MutableDoubleByteMapwith(double key, byte value)MutableDoubleByteMapwith(double key1, byte value1, double key2, byte value2)MutableDoubleByteMapwith(double key1, byte value1, double key2, byte value2, double key3, byte value3)MutableDoubleByteMapwith(double key1, byte value1, double key2, byte value2, double key3, byte value3, double key4, byte value4)MutableDoubleByteMapwithAll(DoubleByteMap map)MutableDoubleByteMapwithInitialCapacity(int capacity)Same asMutableDoubleByteMapFactory.empty().
-
-
-
Field Detail
-
INSTANCE
public static final MutableDoubleByteMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableDoubleByteMap empty()
- Specified by:
emptyin interfaceMutableDoubleByteMapFactory
-
of
public MutableDoubleByteMap of()
Description copied from interface:MutableDoubleByteMapFactorySame asMutableDoubleByteMapFactory.empty().- Specified by:
ofin interfaceMutableDoubleByteMapFactory
-
with
public MutableDoubleByteMap with()
Description copied from interface:MutableDoubleByteMapFactorySame asMutableDoubleByteMapFactory.empty().- Specified by:
within interfaceMutableDoubleByteMapFactory
-
with
public MutableDoubleByteMap with(double key, byte value)
- Specified by:
within interfaceMutableDoubleByteMapFactory
-
of
public MutableDoubleByteMap of(double key, byte value)
- Specified by:
ofin interfaceMutableDoubleByteMapFactory
-
of
public MutableDoubleByteMap of(double key1, byte value1, double key2, byte value2)
- Specified by:
ofin interfaceMutableDoubleByteMapFactory
-
with
public MutableDoubleByteMap with(double key1, byte value1, double key2, byte value2)
- Specified by:
within interfaceMutableDoubleByteMapFactory
-
of
public MutableDoubleByteMap of(double key1, byte value1, double key2, byte value2, double key3, byte value3)
- Specified by:
ofin interfaceMutableDoubleByteMapFactory
-
with
public MutableDoubleByteMap with(double key1, byte value1, double key2, byte value2, double key3, byte value3)
- Specified by:
within interfaceMutableDoubleByteMapFactory
-
of
public MutableDoubleByteMap of(double key1, byte value1, double key2, byte value2, double key3, byte value3, double key4, byte value4)
- Specified by:
ofin interfaceMutableDoubleByteMapFactory
-
with
public MutableDoubleByteMap with(double key1, byte value1, double key2, byte value2, double key3, byte value3, double key4, byte value4)
- Specified by:
within interfaceMutableDoubleByteMapFactory
-
ofInitialCapacity
public MutableDoubleByteMap ofInitialCapacity(int capacity)
Description copied from interface:MutableDoubleByteMapFactorySame asMutableDoubleByteMapFactory.empty(). but takes in an initial capacity- Specified by:
ofInitialCapacityin interfaceMutableDoubleByteMapFactory
-
withInitialCapacity
public MutableDoubleByteMap withInitialCapacity(int capacity)
Description copied from interface:MutableDoubleByteMapFactorySame asMutableDoubleByteMapFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableDoubleByteMapFactory
-
ofAll
public MutableDoubleByteMap ofAll(DoubleByteMap map)
Description copied from interface:MutableDoubleByteMapFactory- Specified by:
ofAllin interfaceMutableDoubleByteMapFactory
-
withAll
public MutableDoubleByteMap withAll(DoubleByteMap map)
- Specified by:
withAllin interfaceMutableDoubleByteMapFactory
-
from
public <T> MutableDoubleByteMap from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Description copied from interface:MutableDoubleByteMapFactoryCreates anMutableDoubleByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceMutableDoubleByteMapFactory
-
-