Interface ImmutableIntCharMapFactory
-
public interface ImmutableIntCharMapFactoryA factory which creates instances of typeImmutableIntCharMap. 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 ImmutableIntCharMapempty()<T> ImmutableIntCharMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntCharMapof()Same asempty().ImmutableIntCharMapof(int key, char value)Same aswith(int, char).ImmutableIntCharMapofAll(IntCharMap map)Same aswithAll(IntCharMap).ImmutableIntCharMapwith()Same asempty().ImmutableIntCharMapwith(int key, char value)ImmutableIntCharMapwithAll(IntCharMap map)
-
-
-
Method Detail
-
empty
ImmutableIntCharMap empty()
- Since:
- 6.0
-
of
ImmutableIntCharMap of()
Same asempty().
-
with
ImmutableIntCharMap with()
Same asempty().
-
of
ImmutableIntCharMap of(int key, char value)
Same aswith(int, char).
-
with
ImmutableIntCharMap with(int key, char value)
-
ofAll
ImmutableIntCharMap ofAll(IntCharMap map)
Same aswithAll(IntCharMap).
-
withAll
ImmutableIntCharMap withAll(IntCharMap map)
-
from
<T> ImmutableIntCharMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-