Class ImmutableFloatShortMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableFloatShortMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableFloatShortMapFactory
public class ImmutableFloatShortMapFactoryImpl extends Object implements ImmutableFloatShortMapFactory
ImmutableFloatShortMapFactoryImpl is a factory implementation which creates instances of typeImmutableFloatShortMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableFloatShortMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableFloatShortMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableFloatShortMapempty()<T> ImmutableFloatShortMapfrom(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)ImmutableFloatShortMapof()ImmutableFloatShortMapof(float key, short value)ImmutableFloatShortMapofAll(FloatShortMap map)ImmutableFloatShortMapwith()ImmutableFloatShortMapwith(float key, short value)ImmutableFloatShortMapwithAll(FloatShortMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableFloatShortMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableFloatShortMap empty()
- Specified by:
emptyin interfaceImmutableFloatShortMapFactory
-
of
public ImmutableFloatShortMap of()
- Specified by:
ofin interfaceImmutableFloatShortMapFactory
-
with
public ImmutableFloatShortMap with()
- Specified by:
within interfaceImmutableFloatShortMapFactory
-
of
public ImmutableFloatShortMap of(float key, short value)
- Specified by:
ofin interfaceImmutableFloatShortMapFactory
-
with
public ImmutableFloatShortMap with(float key, short value)
- Specified by:
within interfaceImmutableFloatShortMapFactory
-
ofAll
public ImmutableFloatShortMap ofAll(FloatShortMap map)
- Specified by:
ofAllin interfaceImmutableFloatShortMapFactory
-
withAll
public ImmutableFloatShortMap withAll(FloatShortMap map)
- Specified by:
withAllin interfaceImmutableFloatShortMapFactory
-
from
public <T> ImmutableFloatShortMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableFloatShortMapFactory
-
-