Class ImmutableIntShortMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableIntShortMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableIntShortMapFactory
public class ImmutableIntShortMapFactoryImpl extends Object implements ImmutableIntShortMapFactory
ImmutableIntShortMapFactoryImpl is a factory implementation which creates instances of typeImmutableIntShortMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableIntShortMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableIntShortMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableIntShortMapempty()<T> ImmutableIntShortMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)ImmutableIntShortMapof()ImmutableIntShortMapof(int key, short value)ImmutableIntShortMapofAll(IntShortMap map)ImmutableIntShortMapwith()ImmutableIntShortMapwith(int key, short value)ImmutableIntShortMapwithAll(IntShortMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableIntShortMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableIntShortMap empty()
- Specified by:
emptyin interfaceImmutableIntShortMapFactory
-
of
public ImmutableIntShortMap of()
- Specified by:
ofin interfaceImmutableIntShortMapFactory
-
with
public ImmutableIntShortMap with()
- Specified by:
within interfaceImmutableIntShortMapFactory
-
of
public ImmutableIntShortMap of(int key, short value)
- Specified by:
ofin interfaceImmutableIntShortMapFactory
-
with
public ImmutableIntShortMap with(int key, short value)
- Specified by:
within interfaceImmutableIntShortMapFactory
-
ofAll
public ImmutableIntShortMap ofAll(IntShortMap map)
- Specified by:
ofAllin interfaceImmutableIntShortMapFactory
-
withAll
public ImmutableIntShortMap withAll(IntShortMap map)
- Specified by:
withAllin interfaceImmutableIntShortMapFactory
-
from
public <T> ImmutableIntShortMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableIntShortMapFactory
-
-