Interface MutableLongByteMapFactory
- All Known Implementing Classes:
MutableLongByteMapFactoryImpl
public interface MutableLongByteMapFactory
A factory which creates instances of type
MutableLongByteMap
.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableLongByteMap
empty()
<T> MutableLongByteMap
from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableLongByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableLongByteMap
of()
Same asempty()
.MutableLongByteMap
ofAll(LongByteMap map)
Same aswithAll(LongByteMap)
.MutableLongByteMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableLongByteMap
with()
Same asempty()
.MutableLongByteMap
withAll(LongByteMap map)
MutableLongByteMap
withInitialCapacity(int capacity)
Same asempty()
.
-
Method Details
-
empty
MutableLongByteMap empty() -
of
MutableLongByteMap of()Same asempty()
. -
with
MutableLongByteMap with()Same asempty()
. -
ofInitialCapacity
Same asempty()
. but takes in an initial capacity -
withInitialCapacity
Same asempty()
. but takes in an initial capacity -
ofAll
Same aswithAll(LongByteMap)
. -
withAll
-
from
<T> MutableLongByteMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableLongByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-