Interface MutableByteShortMapFactory
-
public interface MutableByteShortMapFactoryA factory which creates instances of typeMutableByteShortMap. 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 MutableByteShortMapempty()<T> MutableByteShortMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableByteShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteShortMapof()Same asempty().default MutableByteShortMapof(byte key, short value)default MutableByteShortMapof(byte key1, short value1, byte key2, short value2)default MutableByteShortMapof(byte key1, short value1, byte key2, short value2, byte key3, short value3)default MutableByteShortMapof(byte key1, short value1, byte key2, short value2, byte key3, short value3, byte key4, short value4)MutableByteShortMapofAll(ByteShortMap map)Same aswithAll(ByteShortMap).MutableByteShortMapofInitialCapacity(int capacity)Same asempty().MutableByteShortMapwith()Same asempty().default MutableByteShortMapwith(byte key, short value)default MutableByteShortMapwith(byte key1, short value1, byte key2, short value2)default MutableByteShortMapwith(byte key1, short value1, byte key2, short value2, byte key3, short value3)default MutableByteShortMapwith(byte key1, short value1, byte key2, short value2, byte key3, short value3, byte key4, short value4)MutableByteShortMapwithAll(ByteShortMap map)MutableByteShortMapwithInitialCapacity(int capacity)Same asempty().
-
-
-
Method Detail
-
empty
MutableByteShortMap empty()
-
of
MutableByteShortMap of()
Same asempty().
-
with
MutableByteShortMap with()
Same asempty().
-
of
default MutableByteShortMap of(byte key, short value)
- Since:
- 11.1.
-
with
default MutableByteShortMap with(byte key, short value)
- Since:
- 11.1.
-
of
default MutableByteShortMap of(byte key1, short value1, byte key2, short value2)
- Since:
- 11.1.
-
with
default MutableByteShortMap with(byte key1, short value1, byte key2, short value2)
- Since:
- 11.1.
-
of
default MutableByteShortMap of(byte key1, short value1, byte key2, short value2, byte key3, short value3)
- Since:
- 11.1.
-
with
default MutableByteShortMap with(byte key1, short value1, byte key2, short value2, byte key3, short value3)
- Since:
- 11.1.
-
of
default MutableByteShortMap of(byte key1, short value1, byte key2, short value2, byte key3, short value3, byte key4, short value4)
- Since:
- 11.1.
-
with
default MutableByteShortMap with(byte key1, short value1, byte key2, short value2, byte key3, short value3, byte key4, short value4)
- Since:
- 11.1.
-
ofInitialCapacity
MutableByteShortMap ofInitialCapacity(int capacity)
Same asempty(). but takes in an initial capacity
-
withInitialCapacity
MutableByteShortMap withInitialCapacity(int capacity)
Same asempty(). but takes in an initial capacity
-
ofAll
MutableByteShortMap ofAll(ByteShortMap map)
Same aswithAll(ByteShortMap).
-
withAll
MutableByteShortMap withAll(ByteShortMap map)
-
from
<T> MutableByteShortMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anMutableByteShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-