Class ImmutableShortCharMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableShortCharMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableShortCharMapFactory
public class ImmutableShortCharMapFactoryImpl extends Object implements ImmutableShortCharMapFactory
ImmutableShortCharMapFactoryImpl is a factory implementation which creates instances of typeImmutableShortCharMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableShortCharMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableShortCharMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableShortCharMapempty()<T> ImmutableShortCharMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)ImmutableShortCharMapof()ImmutableShortCharMapof(short key, char value)ImmutableShortCharMapofAll(ShortCharMap map)ImmutableShortCharMapwith()ImmutableShortCharMapwith(short key, char value)ImmutableShortCharMapwithAll(ShortCharMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableShortCharMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableShortCharMap empty()
- Specified by:
emptyin interfaceImmutableShortCharMapFactory
-
of
public ImmutableShortCharMap of()
- Specified by:
ofin interfaceImmutableShortCharMapFactory
-
with
public ImmutableShortCharMap with()
- Specified by:
within interfaceImmutableShortCharMapFactory
-
of
public ImmutableShortCharMap of(short key, char value)
- Specified by:
ofin interfaceImmutableShortCharMapFactory
-
with
public ImmutableShortCharMap with(short key, char value)
- Specified by:
within interfaceImmutableShortCharMapFactory
-
ofAll
public ImmutableShortCharMap ofAll(ShortCharMap map)
- Specified by:
ofAllin interfaceImmutableShortCharMapFactory
-
withAll
public ImmutableShortCharMap withAll(ShortCharMap map)
- Specified by:
withAllin interfaceImmutableShortCharMapFactory
-
from
public <T> ImmutableShortCharMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableShortCharMapFactory
-
-