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