Interface ImmutableCharCharMapFactory
-
public interface ImmutableCharCharMapFactoryA factory which creates instances of typeImmutableCharCharMap. 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 ImmutableCharCharMapempty()<T> ImmutableCharCharMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableCharCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharCharMapof()Same asempty().ImmutableCharCharMapof(char key, char value)Same aswith(char, char).ImmutableCharCharMapofAll(CharCharMap map)Same aswithAll(CharCharMap).ImmutableCharCharMapwith()Same asempty().ImmutableCharCharMapwith(char key, char value)ImmutableCharCharMapwithAll(CharCharMap map)
-
-
-
Method Detail
-
empty
ImmutableCharCharMap empty()
- Since:
- 6.0
-
of
ImmutableCharCharMap of()
Same asempty().
-
with
ImmutableCharCharMap with()
Same asempty().
-
of
ImmutableCharCharMap of(char key, char value)
Same aswith(char, char).
-
with
ImmutableCharCharMap with(char key, char value)
-
ofAll
ImmutableCharCharMap ofAll(CharCharMap map)
Same aswithAll(CharCharMap).
-
withAll
ImmutableCharCharMap withAll(CharCharMap map)
-
from
<T> ImmutableCharCharMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableCharCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-