Class ImmutableFloatDoubleMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableFloatDoubleMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableFloatDoubleMapFactory
public class ImmutableFloatDoubleMapFactoryImpl extends Object implements ImmutableFloatDoubleMapFactory
ImmutableFloatDoubleMapFactoryImpl is a factory implementation which creates instances of typeImmutableFloatDoubleMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableFloatDoubleMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableFloatDoubleMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableFloatDoubleMapempty()<T> ImmutableFloatDoubleMapfrom(Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)ImmutableFloatDoubleMapof()ImmutableFloatDoubleMapof(float key, double value)ImmutableFloatDoubleMapofAll(FloatDoubleMap map)ImmutableFloatDoubleMapwith()ImmutableFloatDoubleMapwith(float key, double value)ImmutableFloatDoubleMapwithAll(FloatDoubleMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableFloatDoubleMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableFloatDoubleMap empty()
- Specified by:
emptyin interfaceImmutableFloatDoubleMapFactory
-
of
public ImmutableFloatDoubleMap of()
- Specified by:
ofin interfaceImmutableFloatDoubleMapFactory
-
with
public ImmutableFloatDoubleMap with()
- Specified by:
within interfaceImmutableFloatDoubleMapFactory
-
of
public ImmutableFloatDoubleMap of(float key, double value)
- Specified by:
ofin interfaceImmutableFloatDoubleMapFactory
-
with
public ImmutableFloatDoubleMap with(float key, double value)
- Specified by:
within interfaceImmutableFloatDoubleMapFactory
-
ofAll
public ImmutableFloatDoubleMap ofAll(FloatDoubleMap map)
- Specified by:
ofAllin interfaceImmutableFloatDoubleMapFactory
-
withAll
public ImmutableFloatDoubleMap withAll(FloatDoubleMap map)
- Specified by:
withAllin interfaceImmutableFloatDoubleMapFactory
-
from
public <T> ImmutableFloatDoubleMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableFloatDoubleMapFactory
-
-