Class MutableDoubleByteMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableDoubleByteMapFactoryImpl
-
- All Implemented Interfaces:
MutableDoubleByteMapFactory
public class MutableDoubleByteMapFactoryImpl extends 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(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)MutableDoubleByteMapof()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)MutableDoubleByteMapwith()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)
-
-
-
Field Detail
-
INSTANCE
public static final MutableDoubleByteMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableDoubleByteMap empty()
- Specified by:
emptyin interfaceMutableDoubleByteMapFactory
-
of
public MutableDoubleByteMap of()
- Specified by:
ofin interfaceMutableDoubleByteMapFactory
-
with
public MutableDoubleByteMap with()
- 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)
- Specified by:
ofInitialCapacityin interfaceMutableDoubleByteMapFactory
-
withInitialCapacity
public MutableDoubleByteMap withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableDoubleByteMapFactory
-
ofAll
public MutableDoubleByteMap ofAll(DoubleByteMap map)
- Specified by:
ofAllin interfaceMutableDoubleByteMapFactory
-
withAll
public MutableDoubleByteMap withAll(DoubleByteMap map)
- Specified by:
withAllin interfaceMutableDoubleByteMapFactory
-
from
public <T> MutableDoubleByteMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableDoubleByteMapFactory
-
-