Interface ImmutableFloatLongMapFactory
- All Known Implementing Classes:
ImmutableFloatLongMapFactoryImpl
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 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 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
-