Class ImmutableDoubleDoubleMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableDoubleDoubleMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableDoubleDoubleMapFactory
public class ImmutableDoubleDoubleMapFactoryImpl extends Object implements ImmutableDoubleDoubleMapFactory
ImmutableDoubleDoubleMapFactoryImpl is a factory implementation which creates instances of typeImmutableDoubleDoubleMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableDoubleDoubleMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableDoubleDoubleMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableDoubleDoubleMapempty()<T> ImmutableDoubleDoubleMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)ImmutableDoubleDoubleMapof()ImmutableDoubleDoubleMapof(double key, double value)ImmutableDoubleDoubleMapofAll(DoubleDoubleMap map)ImmutableDoubleDoubleMapwith()ImmutableDoubleDoubleMapwith(double key, double value)ImmutableDoubleDoubleMapwithAll(DoubleDoubleMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableDoubleDoubleMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableDoubleDoubleMap empty()
- Specified by:
emptyin interfaceImmutableDoubleDoubleMapFactory
-
of
public ImmutableDoubleDoubleMap of()
- Specified by:
ofin interfaceImmutableDoubleDoubleMapFactory
-
with
public ImmutableDoubleDoubleMap with()
- Specified by:
within interfaceImmutableDoubleDoubleMapFactory
-
of
public ImmutableDoubleDoubleMap of(double key, double value)
- Specified by:
ofin interfaceImmutableDoubleDoubleMapFactory
-
with
public ImmutableDoubleDoubleMap with(double key, double value)
- Specified by:
within interfaceImmutableDoubleDoubleMapFactory
-
ofAll
public ImmutableDoubleDoubleMap ofAll(DoubleDoubleMap map)
- Specified by:
ofAllin interfaceImmutableDoubleDoubleMapFactory
-
withAll
public ImmutableDoubleDoubleMap withAll(DoubleDoubleMap map)
- Specified by:
withAllin interfaceImmutableDoubleDoubleMapFactory
-
from
public <T> ImmutableDoubleDoubleMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableDoubleDoubleMapFactory
-
-