Interface ImmutableFloatLongMapFactory
- All Known Implementing Classes:
ImmutableFloatLongMapFactoryImpl
public interface ImmutableFloatLongMapFactory
A factory which creates instances of type
ImmutableFloatLongMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableFloatLongMap
empty()
<T> ImmutableFloatLongMap
from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableFloatLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableFloatLongMap
of()
Same asempty()
.ImmutableFloatLongMap
of(float key, long value)
Same aswith(float, long)
.ImmutableFloatLongMap
ofAll(FloatLongMap map)
Same aswithAll(FloatLongMap)
.ImmutableFloatLongMap
with()
Same asempty()
.ImmutableFloatLongMap
with(float key, long value)
ImmutableFloatLongMap
withAll(FloatLongMap map)
-
Method Details
-
empty
ImmutableFloatLongMap empty()- Since:
- 6.0
-
of
Same asempty()
. -
with
ImmutableFloatLongMap with()Same asempty()
. -
of
Same aswith(float, long)
. -
with
-
ofAll
Same aswithAll(FloatLongMap)
. -
withAll
-
from
<T> ImmutableFloatLongMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anImmutableFloatLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-