Interface MutableByteShortMapFactory
public interface MutableByteShortMapFactory
A factory which creates instances of type
MutableByteShortMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableByteShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().default MutableByteShortMapof(byte key, short value) default MutableByteShortMapof(byte key1, short value1, byte key2, short value2) default MutableByteShortMapof(byte key1, short value1, byte key2, short value2, byte key3, short value3) default MutableByteShortMapof(byte key1, short value1, byte key2, short value2, byte key3, short value3, byte key4, short value4) ofAll(ByteShortMap map) Same aswithAll(ByteShortMap).ofInitialCapacity(int capacity) Same asempty(). but takes in an initial capacitywith()Same asempty().default MutableByteShortMapwith(byte key, short value) default MutableByteShortMapwith(byte key1, short value1, byte key2, short value2) default MutableByteShortMapwith(byte key1, short value1, byte key2, short value2, byte key3, short value3) default MutableByteShortMapwith(byte key1, short value1, byte key2, short value2, byte key3, short value3, byte key4, short value4) withAll(ByteShortMap map) withInitialCapacity(int capacity) Same asempty(). but takes in an initial capacity
-
Method Details
-
empty
MutableByteShortMap empty() -
of
MutableByteShortMap of()Same asempty(). -
with
MutableByteShortMap with()Same asempty(). -
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
default MutableByteShortMap of(byte key1, short value1, byte key2, short value2, byte key3, short value3) - Since:
- 11.1.
-
with
default MutableByteShortMap with(byte key1, short value1, byte key2, short value2, byte key3, short value3) - Since:
- 11.1.
-
of
default MutableByteShortMap of(byte key1, short value1, byte key2, short value2, byte key3, short value3, byte key4, short value4) - Since:
- 11.1.
-
with
default MutableByteShortMap with(byte key1, short value1, byte key2, short value2, byte key3, short value3, byte key4, short value4) - Since:
- 11.1.
-
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(ByteShortMap). -
withAll
-
from
<T> MutableByteShortMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableByteShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-