Class ImmutableCharDoubleMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableCharDoubleMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableCharDoubleMapFactory
public class ImmutableCharDoubleMapFactoryImpl extends Object implements ImmutableCharDoubleMapFactory
ImmutableCharDoubleMapFactoryImpl is a factory implementation which creates instances of typeImmutableCharDoubleMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableCharDoubleMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableCharDoubleMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableCharDoubleMapempty()<T> ImmutableCharDoubleMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)ImmutableCharDoubleMapof()ImmutableCharDoubleMapof(char key, double value)ImmutableCharDoubleMapofAll(CharDoubleMap map)ImmutableCharDoubleMapwith()ImmutableCharDoubleMapwith(char key, double value)ImmutableCharDoubleMapwithAll(CharDoubleMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableCharDoubleMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableCharDoubleMap empty()
- Specified by:
emptyin interfaceImmutableCharDoubleMapFactory
-
of
public ImmutableCharDoubleMap of()
- Specified by:
ofin interfaceImmutableCharDoubleMapFactory
-
with
public ImmutableCharDoubleMap with()
- Specified by:
within interfaceImmutableCharDoubleMapFactory
-
of
public ImmutableCharDoubleMap of(char key, double value)
- Specified by:
ofin interfaceImmutableCharDoubleMapFactory
-
with
public ImmutableCharDoubleMap with(char key, double value)
- Specified by:
within interfaceImmutableCharDoubleMapFactory
-
ofAll
public ImmutableCharDoubleMap ofAll(CharDoubleMap map)
- Specified by:
ofAllin interfaceImmutableCharDoubleMapFactory
-
withAll
public ImmutableCharDoubleMap withAll(CharDoubleMap map)
- Specified by:
withAllin interfaceImmutableCharDoubleMapFactory
-
from
public <T> ImmutableCharDoubleMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableCharDoubleMapFactory
-
-