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