Interface MutableByteShortMapFactory
-
- All Known Implementing Classes:
MutableByteShortMapFactoryImpl
public interface MutableByteShortMapFactory
A 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 MutableByteShortMap
empty()
<T> MutableByteShortMap
from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anMutableByteShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteShortMap
of()
Same asempty()
.default MutableByteShortMap
of(byte key, short value)
default MutableByteShortMap
of(byte key1, short value1, byte key2, short value2)
default MutableByteShortMap
of(byte key1, short value1, byte key2, short value2, byte key3, short value3)
default MutableByteShortMap
of(byte key1, short value1, byte key2, short value2, byte key3, short value3, byte key4, short value4)
MutableByteShortMap
ofAll(ByteShortMap map)
Same aswithAll(ByteShortMap)
.MutableByteShortMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableByteShortMap
with()
Same asempty()
.default MutableByteShortMap
with(byte key, short value)
default MutableByteShortMap
with(byte key1, short value1, byte key2, short value2)
default MutableByteShortMap
with(byte key1, short value1, byte key2, short value2, byte key3, short value3)
default MutableByteShortMap
with(byte key1, short value1, byte key2, short value2, byte key3, short value3, byte key4, short value4)
MutableByteShortMap
withAll(ByteShortMap map)
MutableByteShortMap
withInitialCapacity(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(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anMutableByteShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-