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