Interface MutableByteByteMapFactory
public interface MutableByteByteMapFactory
A factory which creates instances of type
MutableByteByteMap.
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, ByteFunction<? super T> valueFunction) Creates anMutableByteByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().default MutableByteByteMapof(byte key, byte value) default MutableByteByteMapof(byte key1, byte value1, byte key2, byte value2) default MutableByteByteMapof(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3) default MutableByteByteMapof(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3, byte key4, byte value4) ofAll(ByteByteMap map) Same aswithAll(ByteByteMap).ofInitialCapacity(int capacity) Same asempty(). but takes in an initial capacitywith()Same asempty().default MutableByteByteMapwith(byte key, byte value) default MutableByteByteMapwith(byte key1, byte value1, byte key2, byte value2) default MutableByteByteMapwith(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3) default MutableByteByteMapwith(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3, byte key4, byte value4) withAll(ByteByteMap map) withInitialCapacity(int capacity) Same asempty(). but takes in an initial capacity
-
Method Details
-
empty
MutableByteByteMap empty() -
of
MutableByteByteMap of()Same asempty(). -
with
MutableByteByteMap with()Same asempty(). -
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
default MutableByteByteMap of(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3) - Since:
- 11.1.
-
with
default MutableByteByteMap with(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3) - Since:
- 11.1.
-
of
default MutableByteByteMap of(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3, byte key4, byte value4) - Since:
- 11.1.
-
with
default MutableByteByteMap with(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3, byte key4, byte 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(ByteByteMap). -
withAll
-
from
<T> MutableByteByteMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableByteByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-