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