Interface ImmutableByteDoubleMapFactory
- All Known Implementing Classes:
ImmutableByteDoubleMapFactoryImpl
public interface ImmutableByteDoubleMapFactory
A factory which creates instances of type
ImmutableByteDoubleMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableByteDoubleMap
empty()
<T> ImmutableByteDoubleMap
from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableByteDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteDoubleMap
of()
Same asempty()
.ImmutableByteDoubleMap
of(byte key, double value)
Same aswith(byte, double)
.ImmutableByteDoubleMap
ofAll(ByteDoubleMap map)
Same aswithAll(ByteDoubleMap)
.ImmutableByteDoubleMap
with()
Same asempty()
.ImmutableByteDoubleMap
with(byte key, double value)
ImmutableByteDoubleMap
withAll(ByteDoubleMap map)
-
Method Details
-
empty
ImmutableByteDoubleMap empty()- Since:
- 6.0
-
of
Same asempty()
. -
with
ImmutableByteDoubleMap with()Same asempty()
. -
of
Same aswith(byte, double)
. -
with
-
ofAll
Same aswithAll(ByteDoubleMap)
. -
withAll
-
from
<T> ImmutableByteDoubleMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableByteDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-