Interface ImmutableIntFloatMapFactory
- All Known Implementing Classes:
ImmutableIntFloatMapFactoryImpl
public interface ImmutableIntFloatMapFactory
A factory which creates instances of type
ImmutableIntFloatMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableIntFloatMap
empty()
<T> ImmutableIntFloatMap
from(Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableIntFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableIntFloatMap
of()
Same asempty()
.ImmutableIntFloatMap
of(int key, float value)
Same aswith(int, float)
.ImmutableIntFloatMap
ofAll(IntFloatMap map)
Same aswithAll(IntFloatMap)
.ImmutableIntFloatMap
with()
Same asempty()
.ImmutableIntFloatMap
with(int key, float value)
ImmutableIntFloatMap
withAll(IntFloatMap map)
-
Method Details
-
empty
ImmutableIntFloatMap empty()- Since:
- 6.0
-
of
ImmutableIntFloatMap of()Same asempty()
. -
with
ImmutableIntFloatMap with()Same asempty()
. -
of
Same aswith(int, float)
. -
with
-
ofAll
Same aswithAll(IntFloatMap)
. -
withAll
-
from
<T> ImmutableIntFloatMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableIntFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-