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 ImmutableLongFloatMap
empty()
<T> ImmutableLongFloatMap
from(Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableLongFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableLongFloatMap
of()
Same asempty()
.ImmutableLongFloatMap
of(long key, float value)
Same aswith(long, float)
.ImmutableLongFloatMap
ofAll(LongFloatMap map)
Same aswithAll(LongFloatMap)
.ImmutableLongFloatMap
with()
Same asempty()
.ImmutableLongFloatMap
with(long key, float value)
ImmutableLongFloatMap
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 anImmutableLongFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-