Class ImmutableDoubleShortMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableDoubleShortMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableDoubleShortMapFactory
public class ImmutableDoubleShortMapFactoryImpl extends Object implements ImmutableDoubleShortMapFactory
ImmutableDoubleShortMapFactoryImpl is a factory implementation which creates instances of typeImmutableDoubleShortMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableDoubleShortMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableDoubleShortMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableDoubleShortMapempty()<T> ImmutableDoubleShortMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)ImmutableDoubleShortMapof()ImmutableDoubleShortMapof(double key, short value)ImmutableDoubleShortMapofAll(DoubleShortMap map)ImmutableDoubleShortMapwith()ImmutableDoubleShortMapwith(double key, short value)ImmutableDoubleShortMapwithAll(DoubleShortMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableDoubleShortMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableDoubleShortMap empty()
- Specified by:
emptyin interfaceImmutableDoubleShortMapFactory
-
of
public ImmutableDoubleShortMap of()
- Specified by:
ofin interfaceImmutableDoubleShortMapFactory
-
with
public ImmutableDoubleShortMap with()
- Specified by:
within interfaceImmutableDoubleShortMapFactory
-
of
public ImmutableDoubleShortMap of(double key, short value)
- Specified by:
ofin interfaceImmutableDoubleShortMapFactory
-
with
public ImmutableDoubleShortMap with(double key, short value)
- Specified by:
within interfaceImmutableDoubleShortMapFactory
-
ofAll
public ImmutableDoubleShortMap ofAll(DoubleShortMap map)
- Specified by:
ofAllin interfaceImmutableDoubleShortMapFactory
-
withAll
public ImmutableDoubleShortMap withAll(DoubleShortMap map)
- Specified by:
withAllin interfaceImmutableDoubleShortMapFactory
-
from
public <T> ImmutableDoubleShortMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableDoubleShortMapFactory
-
-