Interface ImmutableCharShortMapFactory
-
public interface ImmutableCharShortMapFactoryA factory which creates instances of typeImmutableCharShortMap. 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 ImmutableCharShortMapempty()<T> ImmutableCharShortMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableCharShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharShortMapof()Same asempty().ImmutableCharShortMapof(char key, short value)Same aswith(char, short).ImmutableCharShortMapofAll(CharShortMap map)Same aswithAll(CharShortMap).ImmutableCharShortMapwith()Same asempty().ImmutableCharShortMapwith(char key, short value)ImmutableCharShortMapwithAll(CharShortMap map)
-
-
-
Method Detail
-
empty
ImmutableCharShortMap empty()
- Since:
- 6.0
-
of
ImmutableCharShortMap of()
Same asempty().
-
with
ImmutableCharShortMap with()
Same asempty().
-
of
ImmutableCharShortMap of(char key, short value)
Same aswith(char, short).
-
with
ImmutableCharShortMap with(char key, short value)
-
ofAll
ImmutableCharShortMap ofAll(CharShortMap map)
Same aswithAll(CharShortMap).
-
withAll
ImmutableCharShortMap withAll(CharShortMap map)
-
from
<T> ImmutableCharShortMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableCharShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-