Class ImmutableIntFloatMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableIntFloatMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableIntFloatMapFactory
public class ImmutableIntFloatMapFactoryImpl extends Object implements ImmutableIntFloatMapFactory
ImmutableIntFloatMapFactoryImpl is a factory implementation which creates instances of typeImmutableIntFloatMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableIntFloatMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableIntFloatMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableIntFloatMapempty()<T> ImmutableIntFloatMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)ImmutableIntFloatMapof()ImmutableIntFloatMapof(int key, float value)ImmutableIntFloatMapofAll(IntFloatMap map)ImmutableIntFloatMapwith()ImmutableIntFloatMapwith(int key, float value)ImmutableIntFloatMapwithAll(IntFloatMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableIntFloatMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableIntFloatMap empty()
- Specified by:
emptyin interfaceImmutableIntFloatMapFactory
-
of
public ImmutableIntFloatMap of()
- Specified by:
ofin interfaceImmutableIntFloatMapFactory
-
with
public ImmutableIntFloatMap with()
- Specified by:
within interfaceImmutableIntFloatMapFactory
-
of
public ImmutableIntFloatMap of(int key, float value)
- Specified by:
ofin interfaceImmutableIntFloatMapFactory
-
with
public ImmutableIntFloatMap with(int key, float value)
- Specified by:
within interfaceImmutableIntFloatMapFactory
-
ofAll
public ImmutableIntFloatMap ofAll(IntFloatMap map)
- Specified by:
ofAllin interfaceImmutableIntFloatMapFactory
-
withAll
public ImmutableIntFloatMap withAll(IntFloatMap map)
- Specified by:
withAllin interfaceImmutableIntFloatMapFactory
-
from
public <T> ImmutableIntFloatMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableIntFloatMapFactory
-
-