Interface ImmutableLongFloatMapFactory
-
- All Known Implementing Classes:
ImmutableLongFloatMapFactoryImpl
public interface ImmutableLongFloatMapFactory
A 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 ImmutableLongFloatMap
empty()
<T> ImmutableLongFloatMap
from(java.lang.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 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(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableLongFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-