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