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