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