Interface ImmutableShortCharMapFactory
-
public interface ImmutableShortCharMapFactoryA factory which creates instances of typeImmutableShortCharMap. 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 ImmutableShortCharMapempty()<T> ImmutableShortCharMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableShortCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableShortCharMapof()Same asempty().ImmutableShortCharMapof(short key, char value)Same aswith(short, char).ImmutableShortCharMapofAll(ShortCharMap map)Same aswithAll(ShortCharMap).ImmutableShortCharMapwith()Same asempty().ImmutableShortCharMapwith(short key, char value)ImmutableShortCharMapwithAll(ShortCharMap map)
-
-
-
Method Detail
-
empty
ImmutableShortCharMap empty()
- Since:
- 6.0
-
of
ImmutableShortCharMap of()
Same asempty().
-
with
ImmutableShortCharMap with()
Same asempty().
-
of
ImmutableShortCharMap of(short key, char value)
Same aswith(short, char).
-
with
ImmutableShortCharMap with(short key, char value)
-
ofAll
ImmutableShortCharMap ofAll(ShortCharMap map)
Same aswithAll(ShortCharMap).
-
withAll
ImmutableShortCharMap withAll(ShortCharMap map)
-
from
<T> ImmutableShortCharMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableShortCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-