Class ImmutableLongDoubleMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableLongDoubleMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableLongDoubleMapFactory
public class ImmutableLongDoubleMapFactoryImpl extends Object implements ImmutableLongDoubleMapFactory
ImmutableLongDoubleMapFactoryImpl is a factory implementation which creates instances of typeImmutableLongDoubleMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableLongDoubleMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableLongDoubleMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableLongDoubleMapempty()<T> ImmutableLongDoubleMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)ImmutableLongDoubleMapof()ImmutableLongDoubleMapof(long key, double value)ImmutableLongDoubleMapofAll(LongDoubleMap map)ImmutableLongDoubleMapwith()ImmutableLongDoubleMapwith(long key, double value)ImmutableLongDoubleMapwithAll(LongDoubleMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableLongDoubleMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableLongDoubleMap empty()
- Specified by:
emptyin interfaceImmutableLongDoubleMapFactory
-
of
public ImmutableLongDoubleMap of()
- Specified by:
ofin interfaceImmutableLongDoubleMapFactory
-
with
public ImmutableLongDoubleMap with()
- Specified by:
within interfaceImmutableLongDoubleMapFactory
-
of
public ImmutableLongDoubleMap of(long key, double value)
- Specified by:
ofin interfaceImmutableLongDoubleMapFactory
-
with
public ImmutableLongDoubleMap with(long key, double value)
- Specified by:
within interfaceImmutableLongDoubleMapFactory
-
ofAll
public ImmutableLongDoubleMap ofAll(LongDoubleMap map)
- Specified by:
ofAllin interfaceImmutableLongDoubleMapFactory
-
withAll
public ImmutableLongDoubleMap withAll(LongDoubleMap map)
- Specified by:
withAllin interfaceImmutableLongDoubleMapFactory
-
from
public <T> ImmutableLongDoubleMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableLongDoubleMapFactory
-
-