Class ImmutableFloatIntMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableFloatIntMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableFloatIntMapFactory
public class ImmutableFloatIntMapFactoryImpl extends Object implements ImmutableFloatIntMapFactory
ImmutableFloatIntMapFactoryImpl is a factory implementation which creates instances of typeImmutableFloatIntMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableFloatIntMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableFloatIntMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableFloatIntMapempty()<T> ImmutableFloatIntMapfrom(Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)ImmutableFloatIntMapof()ImmutableFloatIntMapof(float key, int value)ImmutableFloatIntMapofAll(FloatIntMap map)ImmutableFloatIntMapwith()ImmutableFloatIntMapwith(float key, int value)ImmutableFloatIntMapwithAll(FloatIntMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableFloatIntMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableFloatIntMap empty()
- Specified by:
emptyin interfaceImmutableFloatIntMapFactory
-
of
public ImmutableFloatIntMap of()
- Specified by:
ofin interfaceImmutableFloatIntMapFactory
-
with
public ImmutableFloatIntMap with()
- Specified by:
within interfaceImmutableFloatIntMapFactory
-
of
public ImmutableFloatIntMap of(float key, int value)
- Specified by:
ofin interfaceImmutableFloatIntMapFactory
-
with
public ImmutableFloatIntMap with(float key, int value)
- Specified by:
within interfaceImmutableFloatIntMapFactory
-
ofAll
public ImmutableFloatIntMap ofAll(FloatIntMap map)
- Specified by:
ofAllin interfaceImmutableFloatIntMapFactory
-
withAll
public ImmutableFloatIntMap withAll(FloatIntMap map)
- Specified by:
withAllin interfaceImmutableFloatIntMapFactory
-
from
public <T> ImmutableFloatIntMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableFloatIntMapFactory
-
-