public interface MutableShortCharMapFactory
MutableShortCharMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.| Modifier and Type | Method and Description |
|---|---|
MutableShortCharMap |
empty() |
<T> MutableShortCharMap |
from(Iterable<T> iterable,
ShortFunction<? super T> keyFunction,
CharFunction<? super T> valueFunction)
Creates an
MutableShortCharMap from an Iterable<T> by applying keyFunction and valueFunction. |
MutableShortCharMap |
of()
Same as
empty(). |
default MutableShortCharMap |
of(short key,
char value) |
default MutableShortCharMap |
of(short key1,
char value1,
short key2,
char value2) |
default MutableShortCharMap |
of(short key1,
char value1,
short key2,
char value2,
short key3,
char value3) |
default MutableShortCharMap |
of(short key1,
char value1,
short key2,
char value2,
short key3,
char value3,
short key4,
char value4) |
MutableShortCharMap |
ofAll(ShortCharMap map)
Same as
withAll(ShortCharMap). |
MutableShortCharMap |
ofInitialCapacity(int capacity)
Same as
empty(). |
MutableShortCharMap |
with()
Same as
empty(). |
default MutableShortCharMap |
with(short key,
char value) |
default MutableShortCharMap |
with(short key1,
char value1,
short key2,
char value2) |
default MutableShortCharMap |
with(short key1,
char value1,
short key2,
char value2,
short key3,
char value3) |
default MutableShortCharMap |
with(short key1,
char value1,
short key2,
char value2,
short key3,
char value3,
short key4,
char value4) |
MutableShortCharMap |
withAll(ShortCharMap map) |
MutableShortCharMap |
withInitialCapacity(int capacity)
Same as
empty(). |
MutableShortCharMap empty()
MutableShortCharMap of()
empty().MutableShortCharMap with()
empty().default MutableShortCharMap of(short key, char value)
default MutableShortCharMap with(short key, char value)
default MutableShortCharMap of(short key1, char value1, short key2, char value2)
default MutableShortCharMap with(short key1, char value1, short key2, char value2)
default MutableShortCharMap of(short key1, char value1, short key2, char value2, short key3, char value3)
default MutableShortCharMap with(short key1, char value1, short key2, char value2, short key3, char value3)
default MutableShortCharMap of(short key1, char value1, short key2, char value2, short key3, char value3, short key4, char value4)
default MutableShortCharMap with(short key1, char value1, short key2, char value2, short key3, char value3, short key4, char value4)
MutableShortCharMap ofInitialCapacity(int capacity)
empty(). but takes in an initial capacityMutableShortCharMap withInitialCapacity(int capacity)
empty(). but takes in an initial capacityMutableShortCharMap ofAll(ShortCharMap map)
withAll(ShortCharMap).MutableShortCharMap withAll(ShortCharMap map)
<T> MutableShortCharMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
MutableShortCharMap from an Iterable<T> by applying keyFunction and valueFunction.Copyright © 2004–2023. All rights reserved.