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