Class ImmutableShortFloatMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableShortFloatMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableShortFloatMapFactory
public class ImmutableShortFloatMapFactoryImpl extends Object implements ImmutableShortFloatMapFactory
ImmutableShortFloatMapFactoryImpl is a factory implementation which creates instances of typeImmutableShortFloatMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableShortFloatMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableShortFloatMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableShortFloatMapempty()<T> ImmutableShortFloatMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)ImmutableShortFloatMapof()ImmutableShortFloatMapof(short key, float value)ImmutableShortFloatMapofAll(ShortFloatMap map)ImmutableShortFloatMapwith()ImmutableShortFloatMapwith(short key, float value)ImmutableShortFloatMapwithAll(ShortFloatMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableShortFloatMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableShortFloatMap empty()
- Specified by:
emptyin interfaceImmutableShortFloatMapFactory
-
of
public ImmutableShortFloatMap of()
- Specified by:
ofin interfaceImmutableShortFloatMapFactory
-
with
public ImmutableShortFloatMap with()
- Specified by:
within interfaceImmutableShortFloatMapFactory
-
of
public ImmutableShortFloatMap of(short key, float value)
- Specified by:
ofin interfaceImmutableShortFloatMapFactory
-
with
public ImmutableShortFloatMap with(short key, float value)
- Specified by:
within interfaceImmutableShortFloatMapFactory
-
ofAll
public ImmutableShortFloatMap ofAll(ShortFloatMap map)
- Specified by:
ofAllin interfaceImmutableShortFloatMapFactory
-
withAll
public ImmutableShortFloatMap withAll(ShortFloatMap map)
- Specified by:
withAllin interfaceImmutableShortFloatMapFactory
-
from
public <T> ImmutableShortFloatMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableShortFloatMapFactory
-
-