Class ImmutableFloatLongMapFactoryImpl
java.lang.Object
org.eclipse.collections.impl.map.immutable.primitive.ImmutableFloatLongMapFactoryImpl
- All Implemented Interfaces:
ImmutableFloatLongMapFactory
public class ImmutableFloatLongMapFactoryImpl
extends Object
implements ImmutableFloatLongMapFactory
ImmutableFloatLongMapFactoryImpl is a factory implementation which creates instances of type
ImmutableFloatLongMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionempty()
from
(Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableFloatLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.of()
Same asImmutableFloatLongMapFactory.empty()
.of
(float key, long value) ofAll
(FloatLongMap map) with()
Same asImmutableFloatLongMapFactory.empty()
.with
(float key, long value) withAll
(FloatLongMap map)
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
ImmutableFloatLongMapFactoryImpl
public ImmutableFloatLongMapFactoryImpl()
-
-
Method Details
-
empty
- Specified by:
empty
in interfaceImmutableFloatLongMapFactory
-
of
Description copied from interface:ImmutableFloatLongMapFactory
Same asImmutableFloatLongMapFactory.empty()
.- Specified by:
of
in interfaceImmutableFloatLongMapFactory
-
with
Description copied from interface:ImmutableFloatLongMapFactory
Same asImmutableFloatLongMapFactory.empty()
.- Specified by:
with
in interfaceImmutableFloatLongMapFactory
-
of
Description copied from interface:ImmutableFloatLongMapFactory
- Specified by:
of
in interfaceImmutableFloatLongMapFactory
-
with
- Specified by:
with
in interfaceImmutableFloatLongMapFactory
-
ofAll
Description copied from interface:ImmutableFloatLongMapFactory
- Specified by:
ofAll
in interfaceImmutableFloatLongMapFactory
-
withAll
- Specified by:
withAll
in interfaceImmutableFloatLongMapFactory
-
from
public <T> ImmutableFloatLongMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Description copied from interface:ImmutableFloatLongMapFactory
Creates anImmutableFloatLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceImmutableFloatLongMapFactory
-