Interface ImmutableIntShortMapFactory
-
public interface ImmutableIntShortMapFactoryA factory which creates instances of typeImmutableIntShortMap. 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 ImmutableIntShortMapempty()<T> ImmutableIntShortMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableIntShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntShortMapof()Same asempty().ImmutableIntShortMapof(int key, short value)Same aswith(int, short).ImmutableIntShortMapofAll(IntShortMap map)Same aswithAll(IntShortMap).ImmutableIntShortMapwith()Same asempty().ImmutableIntShortMapwith(int key, short value)ImmutableIntShortMapwithAll(IntShortMap map)
-
-
-
Method Detail
-
empty
ImmutableIntShortMap empty()
- Since:
- 6.0
-
of
ImmutableIntShortMap of()
Same asempty().
-
with
ImmutableIntShortMap with()
Same asempty().
-
of
ImmutableIntShortMap of(int key, short value)
Same aswith(int, short).
-
with
ImmutableIntShortMap with(int key, short value)
-
ofAll
ImmutableIntShortMap ofAll(IntShortMap map)
Same aswithAll(IntShortMap).
-
withAll
ImmutableIntShortMap withAll(IntShortMap map)
-
from
<T> ImmutableIntShortMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableIntShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-