Class ImmutableCharFloatMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableCharFloatMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableCharFloatMapFactory
public class ImmutableCharFloatMapFactoryImpl extends Object implements ImmutableCharFloatMapFactory
ImmutableCharFloatMapFactoryImpl is a factory implementation which creates instances of typeImmutableCharFloatMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableCharFloatMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableCharFloatMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableCharFloatMapempty()<T> ImmutableCharFloatMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)ImmutableCharFloatMapof()ImmutableCharFloatMapof(char key, float value)ImmutableCharFloatMapofAll(CharFloatMap map)ImmutableCharFloatMapwith()ImmutableCharFloatMapwith(char key, float value)ImmutableCharFloatMapwithAll(CharFloatMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableCharFloatMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableCharFloatMap empty()
- Specified by:
emptyin interfaceImmutableCharFloatMapFactory
-
of
public ImmutableCharFloatMap of()
- Specified by:
ofin interfaceImmutableCharFloatMapFactory
-
with
public ImmutableCharFloatMap with()
- Specified by:
within interfaceImmutableCharFloatMapFactory
-
of
public ImmutableCharFloatMap of(char key, float value)
- Specified by:
ofin interfaceImmutableCharFloatMapFactory
-
with
public ImmutableCharFloatMap with(char key, float value)
- Specified by:
within interfaceImmutableCharFloatMapFactory
-
ofAll
public ImmutableCharFloatMap ofAll(CharFloatMap map)
- Specified by:
ofAllin interfaceImmutableCharFloatMapFactory
-
withAll
public ImmutableCharFloatMap withAll(CharFloatMap map)
- Specified by:
withAllin interfaceImmutableCharFloatMapFactory
-
from
public <T> ImmutableCharFloatMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableCharFloatMapFactory
-
-