Interface ImmutableShortIntMapFactory
-
public interface ImmutableShortIntMapFactoryA factory which creates instances of typeImmutableShortIntMap. 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 ImmutableShortIntMapempty()<T> ImmutableShortIntMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableShortIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableShortIntMapof()Same asempty().ImmutableShortIntMapof(short key, int value)Same aswith(short, int).ImmutableShortIntMapofAll(ShortIntMap map)Same aswithAll(ShortIntMap).ImmutableShortIntMapwith()Same asempty().ImmutableShortIntMapwith(short key, int value)ImmutableShortIntMapwithAll(ShortIntMap map)
-
-
-
Method Detail
-
empty
ImmutableShortIntMap empty()
- Since:
- 6.0
-
of
ImmutableShortIntMap of()
Same asempty().
-
with
ImmutableShortIntMap with()
Same asempty().
-
of
ImmutableShortIntMap of(short key, int value)
Same aswith(short, int).
-
with
ImmutableShortIntMap with(short key, int value)
-
ofAll
ImmutableShortIntMap ofAll(ShortIntMap map)
Same aswithAll(ShortIntMap).
-
withAll
ImmutableShortIntMap withAll(ShortIntMap map)
-
from
<T> ImmutableShortIntMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableShortIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-