Interface MutableCharByteMapFactory
public interface MutableCharByteMapFactory
A factory which creates instances of type
MutableCharByteMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableCharByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().default MutableCharByteMapof(char key, byte value) default MutableCharByteMapof(char key1, byte value1, char key2, byte value2) default MutableCharByteMapof(char key1, byte value1, char key2, byte value2, char key3, byte value3) default MutableCharByteMapof(char key1, byte value1, char key2, byte value2, char key3, byte value3, char key4, byte value4) ofAll(CharByteMap map) Same aswithAll(CharByteMap).ofInitialCapacity(int capacity) Same asempty(). but takes in an initial capacitywith()Same asempty().default MutableCharByteMapwith(char key, byte value) default MutableCharByteMapwith(char key1, byte value1, char key2, byte value2) default MutableCharByteMapwith(char key1, byte value1, char key2, byte value2, char key3, byte value3) default MutableCharByteMapwith(char key1, byte value1, char key2, byte value2, char key3, byte value3, char key4, byte value4) withAll(CharByteMap map) withInitialCapacity(int capacity) Same asempty(). but takes in an initial capacity
-
Method Details
-
empty
MutableCharByteMap empty() -
of
MutableCharByteMap of()Same asempty(). -
with
MutableCharByteMap with()Same asempty(). -
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
default MutableCharByteMap of(char key1, byte value1, char key2, byte value2, char key3, byte value3) - Since:
- 11.1.
-
with
default MutableCharByteMap with(char key1, byte value1, char key2, byte value2, char key3, byte value3) - Since:
- 11.1.
-
of
default MutableCharByteMap of(char key1, byte value1, char key2, byte value2, char key3, byte value3, char key4, byte value4) - Since:
- 11.1.
-
with
default MutableCharByteMap with(char key1, byte value1, char key2, byte value2, char key3, byte value3, char 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(CharByteMap). -
withAll
-
from
<T> MutableCharByteMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableCharByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-