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