Class ImmutableLongShortMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableLongShortMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableLongShortMapFactory
public class ImmutableLongShortMapFactoryImpl extends Object implements ImmutableLongShortMapFactory
ImmutableLongShortMapFactoryImpl is a factory implementation which creates instances of typeImmutableLongShortMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableLongShortMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableLongShortMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableLongShortMapempty()<T> ImmutableLongShortMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)ImmutableLongShortMapof()ImmutableLongShortMapof(long key, short value)ImmutableLongShortMapofAll(LongShortMap map)ImmutableLongShortMapwith()ImmutableLongShortMapwith(long key, short value)ImmutableLongShortMapwithAll(LongShortMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableLongShortMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableLongShortMap empty()
- Specified by:
emptyin interfaceImmutableLongShortMapFactory
-
of
public ImmutableLongShortMap of()
- Specified by:
ofin interfaceImmutableLongShortMapFactory
-
with
public ImmutableLongShortMap with()
- Specified by:
within interfaceImmutableLongShortMapFactory
-
of
public ImmutableLongShortMap of(long key, short value)
- Specified by:
ofin interfaceImmutableLongShortMapFactory
-
with
public ImmutableLongShortMap with(long key, short value)
- Specified by:
within interfaceImmutableLongShortMapFactory
-
ofAll
public ImmutableLongShortMap ofAll(LongShortMap map)
- Specified by:
ofAllin interfaceImmutableLongShortMapFactory
-
withAll
public ImmutableLongShortMap withAll(LongShortMap map)
- Specified by:
withAllin interfaceImmutableLongShortMapFactory
-
from
public <T> ImmutableLongShortMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableLongShortMapFactory
-
-