Interface ImmutableShortFloatMapFactory
-
- All Known Implementing Classes:
ImmutableShortFloatMapFactoryImpl
public interface ImmutableShortFloatMapFactory
A factory which creates instances of typeImmutableShortFloatMap
. 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 ImmutableShortFloatMap
empty()
<T> ImmutableShortFloatMap
from(java.lang.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 Detail
-
empty
ImmutableShortFloatMap empty()
- Since:
- 6.0
-
of
ImmutableShortFloatMap of()
Same asempty()
.
-
with
ImmutableShortFloatMap with()
Same asempty()
.
-
of
ImmutableShortFloatMap of(short key, float value)
Same aswith(short, float)
.
-
with
ImmutableShortFloatMap with(short key, float value)
-
ofAll
ImmutableShortFloatMap ofAll(ShortFloatMap map)
Same aswithAll(ShortFloatMap)
.
-
withAll
ImmutableShortFloatMap withAll(ShortFloatMap map)
-
from
<T> ImmutableShortFloatMap from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableShortFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-