Class ImmutableDoubleCharMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableDoubleCharMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableDoubleCharMapFactory
public class ImmutableDoubleCharMapFactoryImpl extends Object implements ImmutableDoubleCharMapFactory
ImmutableDoubleCharMapFactoryImpl is a factory implementation which creates instances of typeImmutableDoubleCharMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableDoubleCharMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableDoubleCharMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableDoubleCharMapempty()<T> ImmutableDoubleCharMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)ImmutableDoubleCharMapof()ImmutableDoubleCharMapof(double key, char value)ImmutableDoubleCharMapofAll(DoubleCharMap map)ImmutableDoubleCharMapwith()ImmutableDoubleCharMapwith(double key, char value)ImmutableDoubleCharMapwithAll(DoubleCharMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableDoubleCharMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableDoubleCharMap empty()
- Specified by:
emptyin interfaceImmutableDoubleCharMapFactory
-
of
public ImmutableDoubleCharMap of()
- Specified by:
ofin interfaceImmutableDoubleCharMapFactory
-
with
public ImmutableDoubleCharMap with()
- Specified by:
within interfaceImmutableDoubleCharMapFactory
-
of
public ImmutableDoubleCharMap of(double key, char value)
- Specified by:
ofin interfaceImmutableDoubleCharMapFactory
-
with
public ImmutableDoubleCharMap with(double key, char value)
- Specified by:
within interfaceImmutableDoubleCharMapFactory
-
ofAll
public ImmutableDoubleCharMap ofAll(DoubleCharMap map)
- Specified by:
ofAllin interfaceImmutableDoubleCharMapFactory
-
withAll
public ImmutableDoubleCharMap withAll(DoubleCharMap map)
- Specified by:
withAllin interfaceImmutableDoubleCharMapFactory
-
from
public <T> ImmutableDoubleCharMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableDoubleCharMapFactory
-
-