Interface MutableCharShortMapFactory
-
public interface MutableCharShortMapFactoryA factory which creates instances of typeMutableCharShortMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description MutableCharShortMapempty()<T> MutableCharShortMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableCharShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharShortMapof()Same asempty().default MutableCharShortMapof(char key, short value)default MutableCharShortMapof(char key1, short value1, char key2, short value2)default MutableCharShortMapof(char key1, short value1, char key2, short value2, char key3, short value3)default MutableCharShortMapof(char key1, short value1, char key2, short value2, char key3, short value3, char key4, short value4)MutableCharShortMapofAll(CharShortMap map)Same aswithAll(CharShortMap).MutableCharShortMapofInitialCapacity(int capacity)Same asempty().MutableCharShortMapwith()Same asempty().default MutableCharShortMapwith(char key, short value)default MutableCharShortMapwith(char key1, short value1, char key2, short value2)default MutableCharShortMapwith(char key1, short value1, char key2, short value2, char key3, short value3)default MutableCharShortMapwith(char key1, short value1, char key2, short value2, char key3, short value3, char key4, short value4)MutableCharShortMapwithAll(CharShortMap map)MutableCharShortMapwithInitialCapacity(int capacity)Same asempty().
-
-
-
Method Detail
-
empty
MutableCharShortMap empty()
-
of
MutableCharShortMap of()
Same asempty().
-
with
MutableCharShortMap with()
Same asempty().
-
of
default MutableCharShortMap of(char key, short value)
- Since:
- 11.1.
-
with
default MutableCharShortMap with(char key, short value)
- Since:
- 11.1.
-
of
default MutableCharShortMap of(char key1, short value1, char key2, short value2)
- Since:
- 11.1.
-
with
default MutableCharShortMap with(char key1, short value1, char key2, short value2)
- Since:
- 11.1.
-
of
default MutableCharShortMap of(char key1, short value1, char key2, short value2, char key3, short value3)
- Since:
- 11.1.
-
with
default MutableCharShortMap with(char key1, short value1, char key2, short value2, char key3, short value3)
- Since:
- 11.1.
-
of
default MutableCharShortMap of(char key1, short value1, char key2, short value2, char key3, short value3, char key4, short value4)
- Since:
- 11.1.
-
with
default MutableCharShortMap with(char key1, short value1, char key2, short value2, char key3, short value3, char key4, short value4)
- Since:
- 11.1.
-
ofInitialCapacity
MutableCharShortMap ofInitialCapacity(int capacity)
Same asempty(). but takes in an initial capacity
-
withInitialCapacity
MutableCharShortMap withInitialCapacity(int capacity)
Same asempty(). but takes in an initial capacity
-
ofAll
MutableCharShortMap ofAll(CharShortMap map)
Same aswithAll(CharShortMap).
-
withAll
MutableCharShortMap withAll(CharShortMap map)
-
from
<T> MutableCharShortMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anMutableCharShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-