Interface ImmutableLongFloatMapFactory
public interface ImmutableLongFloatMapFactory
A factory which creates instances of type
ImmutableLongFloatMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableLongFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(long key, float value) Same aswith(long, float).ofAll(LongFloatMap map) Same aswithAll(LongFloatMap).with()Same asempty().with(long key, float value) withAll(LongFloatMap map)
-
Method Details
-
empty
ImmutableLongFloatMap empty()- Since:
- 6.0
-
of
Same asempty(). -
with
ImmutableLongFloatMap with()Same asempty(). -
of
Same aswith(long, float). -
with
-
ofAll
Same aswithAll(LongFloatMap). -
withAll
-
from
<T> ImmutableLongFloatMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableLongFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-