Class ImmutableLongFloatMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableLongFloatMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableLongFloatMapFactory
public class ImmutableLongFloatMapFactoryImpl extends Object implements ImmutableLongFloatMapFactory
ImmutableLongFloatMapFactoryImpl is a factory implementation which creates instances of typeImmutableLongFloatMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableLongFloatMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableLongFloatMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableLongFloatMapempty()<T> ImmutableLongFloatMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)ImmutableLongFloatMapof()ImmutableLongFloatMapof(long key, float value)ImmutableLongFloatMapofAll(LongFloatMap map)ImmutableLongFloatMapwith()ImmutableLongFloatMapwith(long key, float value)ImmutableLongFloatMapwithAll(LongFloatMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableLongFloatMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableLongFloatMap empty()
- Specified by:
emptyin interfaceImmutableLongFloatMapFactory
-
of
public ImmutableLongFloatMap of()
- Specified by:
ofin interfaceImmutableLongFloatMapFactory
-
with
public ImmutableLongFloatMap with()
- Specified by:
within interfaceImmutableLongFloatMapFactory
-
of
public ImmutableLongFloatMap of(long key, float value)
- Specified by:
ofin interfaceImmutableLongFloatMapFactory
-
with
public ImmutableLongFloatMap with(long key, float value)
- Specified by:
within interfaceImmutableLongFloatMapFactory
-
ofAll
public ImmutableLongFloatMap ofAll(LongFloatMap map)
- Specified by:
ofAllin interfaceImmutableLongFloatMapFactory
-
withAll
public ImmutableLongFloatMap withAll(LongFloatMap map)
- Specified by:
withAllin interfaceImmutableLongFloatMapFactory
-
from
public <T> ImmutableLongFloatMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableLongFloatMapFactory
-
-