Interface ImmutableShortCharMapFactory
- All Known Implementing Classes:
ImmutableShortCharMapFactoryImpl
public interface ImmutableShortCharMapFactory
A factory which creates instances of type
ImmutableShortCharMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableShortCharMap
empty()
<T> ImmutableShortCharMap
from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableShortCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortCharMap
of()
Same asempty()
.ImmutableShortCharMap
of(short key, char value)
Same aswith(short, char)
.ImmutableShortCharMap
ofAll(ShortCharMap map)
Same aswithAll(ShortCharMap)
.ImmutableShortCharMap
with()
Same asempty()
.ImmutableShortCharMap
with(short key, char value)
ImmutableShortCharMap
withAll(ShortCharMap map)
-
Method Details
-
empty
ImmutableShortCharMap empty()- Since:
- 6.0
-
of
Same asempty()
. -
with
ImmutableShortCharMap with()Same asempty()
. -
of
Same aswith(short, char)
. -
with
-
ofAll
Same aswithAll(ShortCharMap)
. -
withAll
-
from
<T> ImmutableShortCharMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableShortCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-