Interface ImmutableLongFloatMapFactory
-
public interface ImmutableLongFloatMapFactoryA factory which creates instances of typeImmutableLongFloatMap. 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 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 Detail
-
empty
ImmutableLongFloatMap empty()
- Since:
- 6.0
-
of
ImmutableLongFloatMap of()
Same asempty().
-
with
ImmutableLongFloatMap with()
Same asempty().
-
of
ImmutableLongFloatMap of(long key, float value)
Same aswith(long, float).
-
with
ImmutableLongFloatMap with(long key, float value)
-
ofAll
ImmutableLongFloatMap ofAll(LongFloatMap map)
Same aswithAll(LongFloatMap).
-
withAll
ImmutableLongFloatMap withAll(LongFloatMap map)
-
from
<T> ImmutableLongFloatMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableLongFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-