Interface MutableDoubleShortMapFactory
-
public interface MutableDoubleShortMapFactoryA factory which creates instances of typeMutableDoubleShortMap. 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 MutableDoubleShortMapempty()<T> MutableDoubleShortMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableDoubleShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleShortMapof()Same asempty().default MutableDoubleShortMapof(double key, short value)default MutableDoubleShortMapof(double key1, short value1, double key2, short value2)default MutableDoubleShortMapof(double key1, short value1, double key2, short value2, double key3, short value3)default MutableDoubleShortMapof(double key1, short value1, double key2, short value2, double key3, short value3, double key4, short value4)MutableDoubleShortMapofAll(DoubleShortMap map)Same aswithAll(DoubleShortMap).MutableDoubleShortMapofInitialCapacity(int capacity)Same asempty().MutableDoubleShortMapwith()Same asempty().default MutableDoubleShortMapwith(double key, short value)default MutableDoubleShortMapwith(double key1, short value1, double key2, short value2)default MutableDoubleShortMapwith(double key1, short value1, double key2, short value2, double key3, short value3)default MutableDoubleShortMapwith(double key1, short value1, double key2, short value2, double key3, short value3, double key4, short value4)MutableDoubleShortMapwithAll(DoubleShortMap map)MutableDoubleShortMapwithInitialCapacity(int capacity)Same asempty().
-
-
-
Method Detail
-
empty
MutableDoubleShortMap empty()
-
of
MutableDoubleShortMap of()
Same asempty().
-
with
MutableDoubleShortMap with()
Same asempty().
-
of
default MutableDoubleShortMap of(double key, short value)
- Since:
- 11.1.
-
with
default MutableDoubleShortMap with(double key, short value)
- Since:
- 11.1.
-
of
default MutableDoubleShortMap of(double key1, short value1, double key2, short value2)
- Since:
- 11.1.
-
with
default MutableDoubleShortMap with(double key1, short value1, double key2, short value2)
- Since:
- 11.1.
-
of
default MutableDoubleShortMap of(double key1, short value1, double key2, short value2, double key3, short value3)
- Since:
- 11.1.
-
with
default MutableDoubleShortMap with(double key1, short value1, double key2, short value2, double key3, short value3)
- Since:
- 11.1.
-
of
default MutableDoubleShortMap of(double key1, short value1, double key2, short value2, double key3, short value3, double key4, short value4)
- Since:
- 11.1.
-
with
default MutableDoubleShortMap with(double key1, short value1, double key2, short value2, double key3, short value3, double key4, short value4)
- Since:
- 11.1.
-
ofInitialCapacity
MutableDoubleShortMap ofInitialCapacity(int capacity)
Same asempty(). but takes in an initial capacity
-
withInitialCapacity
MutableDoubleShortMap withInitialCapacity(int capacity)
Same asempty(). but takes in an initial capacity
-
ofAll
MutableDoubleShortMap ofAll(DoubleShortMap map)
Same aswithAll(DoubleShortMap).
-
withAll
MutableDoubleShortMap withAll(DoubleShortMap map)
-
from
<T> MutableDoubleShortMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anMutableDoubleShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-