Interface ImmutableCharCharMapFactory
public interface ImmutableCharCharMapFactory
A factory which creates instances of type
ImmutableCharCharMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableCharCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(char key, char value) Same aswith(char, char).ofAll(CharCharMap map) Same aswithAll(CharCharMap).with()Same asempty().with(char key, char value) withAll(CharCharMap map)
-
Method Details
-
empty
ImmutableCharCharMap empty()- Since:
- 6.0
-
of
ImmutableCharCharMap of()Same asempty(). -
with
ImmutableCharCharMap with()Same asempty(). -
of
Same aswith(char, char). -
with
-
ofAll
Same aswithAll(CharCharMap). -
withAll
-
from
<T> ImmutableCharCharMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableCharCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-