Class ImmutableCharShortMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableCharShortMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableCharShortMapFactory
public class ImmutableCharShortMapFactoryImpl extends Object implements ImmutableCharShortMapFactory
ImmutableCharShortMapFactoryImpl is a factory implementation which creates instances of typeImmutableCharShortMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableCharShortMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableCharShortMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableCharShortMapempty()<T> ImmutableCharShortMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)ImmutableCharShortMapof()ImmutableCharShortMapof(char key, short value)ImmutableCharShortMapofAll(CharShortMap map)ImmutableCharShortMapwith()ImmutableCharShortMapwith(char key, short value)ImmutableCharShortMapwithAll(CharShortMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableCharShortMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableCharShortMap empty()
- Specified by:
emptyin interfaceImmutableCharShortMapFactory
-
of
public ImmutableCharShortMap of()
- Specified by:
ofin interfaceImmutableCharShortMapFactory
-
with
public ImmutableCharShortMap with()
- Specified by:
within interfaceImmutableCharShortMapFactory
-
of
public ImmutableCharShortMap of(char key, short value)
- Specified by:
ofin interfaceImmutableCharShortMapFactory
-
with
public ImmutableCharShortMap with(char key, short value)
- Specified by:
within interfaceImmutableCharShortMapFactory
-
ofAll
public ImmutableCharShortMap ofAll(CharShortMap map)
- Specified by:
ofAllin interfaceImmutableCharShortMapFactory
-
withAll
public ImmutableCharShortMap withAll(CharShortMap map)
- Specified by:
withAllin interfaceImmutableCharShortMapFactory
-
from
public <T> ImmutableCharShortMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableCharShortMapFactory
-
-