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