Class MutableDoubleObjectMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableDoubleObjectMapFactoryImpl
-
- All Implemented Interfaces:
MutableDoubleObjectMapFactory
public class MutableDoubleObjectMapFactoryImpl extends Object implements MutableDoubleObjectMapFactory
MutableDoubleObjectMapFactoryImpl is a factory implementation which creates instances of typeMutableDoubleObjectMap. This file was automatically generated from template file mutablePrimitiveObjectMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableDoubleObjectMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableDoubleObjectMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <V> MutableDoubleObjectMap<V>empty()<T,V>
MutableDoubleObjectMap<V>from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)<V> MutableDoubleObjectMap<V>of()<V> MutableDoubleObjectMap<V>of(double key, V value)<V> MutableDoubleObjectMap<V>of(double key1, V value1, double key2, V value2)<V> MutableDoubleObjectMap<V>of(double key1, V value1, double key2, V value2, double key3, V value3)<V> MutableDoubleObjectMap<V>of(double key1, V value1, double key2, V value2, double key3, V value3, double key4, V value4)<V> MutableDoubleObjectMap<V>ofAll(DoubleObjectMap<? extends V> map)<V> MutableDoubleObjectMap<V>ofInitialCapacity(int capacity)<V> MutableDoubleObjectMap<V>with()<V> MutableDoubleObjectMap<V>with(double key, V value)<V> MutableDoubleObjectMap<V>with(double key1, V value1, double key2, V value2)<V> MutableDoubleObjectMap<V>with(double key1, V value1, double key2, V value2, double key3, V value3)<V> MutableDoubleObjectMap<V>with(double key1, V value1, double key2, V value2, double key3, V value3, double key4, V value4)<V> MutableDoubleObjectMap<V>withAll(DoubleObjectMap<? extends V> map)<V> MutableDoubleObjectMap<V>withInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableDoubleObjectMapFactory INSTANCE
-
-
Method Detail
-
empty
public <V> MutableDoubleObjectMap<V> empty()
- Specified by:
emptyin interfaceMutableDoubleObjectMapFactory
-
of
public <V> MutableDoubleObjectMap<V> of()
- Specified by:
ofin interfaceMutableDoubleObjectMapFactory
-
with
public <V> MutableDoubleObjectMap<V> with()
- Specified by:
within interfaceMutableDoubleObjectMapFactory
-
of
public <V> MutableDoubleObjectMap<V> of(double key, V value)
- Specified by:
ofin interfaceMutableDoubleObjectMapFactory
-
with
public <V> MutableDoubleObjectMap<V> with(double key, V value)
- Specified by:
within interfaceMutableDoubleObjectMapFactory
-
of
public <V> MutableDoubleObjectMap<V> of(double key1, V value1, double key2, V value2)
- Specified by:
ofin interfaceMutableDoubleObjectMapFactory
-
with
public <V> MutableDoubleObjectMap<V> with(double key1, V value1, double key2, V value2)
- Specified by:
within interfaceMutableDoubleObjectMapFactory
-
of
public <V> MutableDoubleObjectMap<V> of(double key1, V value1, double key2, V value2, double key3, V value3)
- Specified by:
ofin interfaceMutableDoubleObjectMapFactory
-
with
public <V> MutableDoubleObjectMap<V> with(double key1, V value1, double key2, V value2, double key3, V value3)
- Specified by:
within interfaceMutableDoubleObjectMapFactory
-
of
public <V> MutableDoubleObjectMap<V> of(double key1, V value1, double key2, V value2, double key3, V value3, double key4, V value4)
- Specified by:
ofin interfaceMutableDoubleObjectMapFactory
-
with
public <V> MutableDoubleObjectMap<V> with(double key1, V value1, double key2, V value2, double key3, V value3, double key4, V value4)
- Specified by:
within interfaceMutableDoubleObjectMapFactory
-
ofInitialCapacity
public <V> MutableDoubleObjectMap<V> ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableDoubleObjectMapFactory
-
withInitialCapacity
public <V> MutableDoubleObjectMap<V> withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableDoubleObjectMapFactory
-
ofAll
public <V> MutableDoubleObjectMap<V> ofAll(DoubleObjectMap<? extends V> map)
- Specified by:
ofAllin interfaceMutableDoubleObjectMapFactory
-
withAll
public <V> MutableDoubleObjectMap<V> withAll(DoubleObjectMap<? extends V> map)
- Specified by:
withAllin interfaceMutableDoubleObjectMapFactory
-
from
public <T,V> MutableDoubleObjectMap<V> from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
- Specified by:
fromin interfaceMutableDoubleObjectMapFactory
-
-