Interface ImmutableShortCharMapFactory
-
- All Known Implementing Classes:
ImmutableShortCharMapFactoryImpl
public interface ImmutableShortCharMapFactory
A factory which creates instances of typeImmutableShortCharMap
. 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 ImmutableShortCharMap
empty()
<T> ImmutableShortCharMap
from(java.lang.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 Detail
-
empty
ImmutableShortCharMap empty()
- Since:
- 6.0
-
of
ImmutableShortCharMap of()
Same asempty()
.
-
with
ImmutableShortCharMap with()
Same asempty()
.
-
of
ImmutableShortCharMap of(short key, char value)
Same aswith(short, char)
.
-
with
ImmutableShortCharMap with(short key, char value)
-
ofAll
ImmutableShortCharMap ofAll(ShortCharMap map)
Same aswithAll(ShortCharMap)
.
-
withAll
ImmutableShortCharMap withAll(ShortCharMap map)
-
from
<T> ImmutableShortCharMap from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableShortCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-