Interface ImmutableFloatLongMapFactory
-
public interface ImmutableFloatLongMapFactoryA 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 ImmutableFloatLongMapempty()<T> ImmutableFloatLongMapfrom(Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anImmutableFloatLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableFloatLongMapof()Same asempty().ImmutableFloatLongMapof(float key, long value)Same aswith(float, long).ImmutableFloatLongMapofAll(FloatLongMap map)Same aswithAll(FloatLongMap).ImmutableFloatLongMapwith()Same asempty().ImmutableFloatLongMapwith(float key, long value)ImmutableFloatLongMapwithAll(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(Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableFloatLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-