Class ImmutableCharIntMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableCharIntMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableCharIntMapFactory
public class ImmutableCharIntMapFactoryImpl extends Object implements ImmutableCharIntMapFactory
ImmutableCharIntMapFactoryImpl is a factory implementation which creates instances of typeImmutableCharIntMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableCharIntMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableCharIntMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableCharIntMapempty()<T> ImmutableCharIntMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)ImmutableCharIntMapof()ImmutableCharIntMapof(char key, int value)ImmutableCharIntMapofAll(CharIntMap map)ImmutableCharIntMapwith()ImmutableCharIntMapwith(char key, int value)ImmutableCharIntMapwithAll(CharIntMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableCharIntMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableCharIntMap empty()
- Specified by:
emptyin interfaceImmutableCharIntMapFactory
-
of
public ImmutableCharIntMap of()
- Specified by:
ofin interfaceImmutableCharIntMapFactory
-
with
public ImmutableCharIntMap with()
- Specified by:
within interfaceImmutableCharIntMapFactory
-
of
public ImmutableCharIntMap of(char key, int value)
- Specified by:
ofin interfaceImmutableCharIntMapFactory
-
with
public ImmutableCharIntMap with(char key, int value)
- Specified by:
within interfaceImmutableCharIntMapFactory
-
ofAll
public ImmutableCharIntMap ofAll(CharIntMap map)
- Specified by:
ofAllin interfaceImmutableCharIntMapFactory
-
withAll
public ImmutableCharIntMap withAll(CharIntMap map)
- Specified by:
withAllin interfaceImmutableCharIntMapFactory
-
from
public <T> ImmutableCharIntMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableCharIntMapFactory
-
-