Class ImmutableDoubleLongMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableDoubleLongMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableDoubleLongMapFactory
public class ImmutableDoubleLongMapFactoryImpl extends Object implements ImmutableDoubleLongMapFactory
ImmutableDoubleLongMapFactoryImpl is a factory implementation which creates instances of typeImmutableDoubleLongMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableDoubleLongMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableDoubleLongMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableDoubleLongMapempty()<T> ImmutableDoubleLongMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)ImmutableDoubleLongMapof()ImmutableDoubleLongMapof(double key, long value)ImmutableDoubleLongMapofAll(DoubleLongMap map)ImmutableDoubleLongMapwith()ImmutableDoubleLongMapwith(double key, long value)ImmutableDoubleLongMapwithAll(DoubleLongMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableDoubleLongMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableDoubleLongMap empty()
- Specified by:
emptyin interfaceImmutableDoubleLongMapFactory
-
of
public ImmutableDoubleLongMap of()
- Specified by:
ofin interfaceImmutableDoubleLongMapFactory
-
with
public ImmutableDoubleLongMap with()
- Specified by:
within interfaceImmutableDoubleLongMapFactory
-
of
public ImmutableDoubleLongMap of(double key, long value)
- Specified by:
ofin interfaceImmutableDoubleLongMapFactory
-
with
public ImmutableDoubleLongMap with(double key, long value)
- Specified by:
within interfaceImmutableDoubleLongMapFactory
-
ofAll
public ImmutableDoubleLongMap ofAll(DoubleLongMap map)
- Specified by:
ofAllin interfaceImmutableDoubleLongMapFactory
-
withAll
public ImmutableDoubleLongMap withAll(DoubleLongMap map)
- Specified by:
withAllin interfaceImmutableDoubleLongMapFactory
-
from
public <T> ImmutableDoubleLongMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableDoubleLongMapFactory
-
-