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 type
ImmutableLongFloatMap
.
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, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableLongFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.of()
Same asImmutableLongFloatMapFactory.empty()
.of
(long key, float value) ofAll
(LongFloatMap map) with()
Same asImmutableLongFloatMapFactory.empty()
.with
(long key, float value) withAll
(LongFloatMap map)
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
ImmutableLongFloatMapFactoryImpl
public ImmutableLongFloatMapFactoryImpl()
-
-
Method Details
-
empty
- Specified by:
empty
in interfaceImmutableLongFloatMapFactory
-
of
Description copied from interface:ImmutableLongFloatMapFactory
Same asImmutableLongFloatMapFactory.empty()
.- Specified by:
of
in interfaceImmutableLongFloatMapFactory
-
with
Description copied from interface:ImmutableLongFloatMapFactory
Same asImmutableLongFloatMapFactory.empty()
.- Specified by:
with
in interfaceImmutableLongFloatMapFactory
-
of
Description copied from interface:ImmutableLongFloatMapFactory
- Specified by:
of
in interfaceImmutableLongFloatMapFactory
-
with
- Specified by:
with
in interfaceImmutableLongFloatMapFactory
-
ofAll
Description copied from interface:ImmutableLongFloatMapFactory
- Specified by:
ofAll
in interfaceImmutableLongFloatMapFactory
-
withAll
- Specified by:
withAll
in interfaceImmutableLongFloatMapFactory
-
from
public <T> ImmutableLongFloatMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Description copied from interface:ImmutableLongFloatMapFactory
Creates anImmutableLongFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceImmutableLongFloatMapFactory
-