Interface ImmutableLongFloatMapFactory
- All Known Implementing Classes:
ImmutableLongFloatMapFactoryImpl
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 Type Method Description ImmutableLongFloatMapempty()<T> ImmutableLongFloatMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableLongFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongFloatMapof()Same asempty().ImmutableLongFloatMapof(long key, float value)Same aswith(long, float).ImmutableLongFloatMapofAll(LongFloatMap map)Same aswithAll(LongFloatMap).ImmutableLongFloatMapwith()Same asempty().ImmutableLongFloatMapwith(long key, float value)ImmutableLongFloatMapwithAll(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
-