Interface ImmutableFloatLongMapFactory
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 TypeMethodDescriptionempty()from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableFloatLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(float key, long value) Same aswith(float, long).ofAll(FloatLongMap map) Same aswithAll(FloatLongMap).with()Same asempty().with(float key, long value) 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 anImmutableFloatLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-