Interface ImmutableCharIntMapFactory
-
- All Known Implementing Classes:
ImmutableCharIntMapFactoryImpl
public interface ImmutableCharIntMapFactory
A 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 ImmutableCharIntMap
empty()
<T> ImmutableCharIntMap
from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableCharIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharIntMap
of()
Same asempty()
.ImmutableCharIntMap
of(char key, int value)
Same aswith(char, int)
.ImmutableCharIntMap
ofAll(CharIntMap map)
Same aswithAll(CharIntMap)
.ImmutableCharIntMap
with()
Same asempty()
.ImmutableCharIntMap
with(char key, int value)
ImmutableCharIntMap
withAll(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(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableCharIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-