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