Interface ImmutableCharIntMapFactory
-
public interface ImmutableCharIntMapFactoryA factory which creates instances of typeImmutableCharIntMap. 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 ImmutableCharIntMapempty()<T> ImmutableCharIntMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableCharIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharIntMapof()Same asempty().ImmutableCharIntMapof(char key, int value)Same aswith(char, int).ImmutableCharIntMapofAll(CharIntMap map)Same aswithAll(CharIntMap).ImmutableCharIntMapwith()Same asempty().ImmutableCharIntMapwith(char key, int value)ImmutableCharIntMapwithAll(CharIntMap map)
-
-
-
Method Detail
-
empty
ImmutableCharIntMap empty()
- Since:
- 6.0
-
of
ImmutableCharIntMap of()
Same asempty().
-
with
ImmutableCharIntMap with()
Same asempty().
-
of
ImmutableCharIntMap of(char key, int value)
Same aswith(char, int).
-
with
ImmutableCharIntMap with(char key, int value)
-
ofAll
ImmutableCharIntMap ofAll(CharIntMap map)
Same aswithAll(CharIntMap).
-
withAll
ImmutableCharIntMap withAll(CharIntMap map)
-
from
<T> ImmutableCharIntMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableCharIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-