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