Interface ImmutableDoubleByteMapFactory
-
public interface ImmutableDoubleByteMapFactoryA 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 ImmutableDoubleByteMapempty()<T> ImmutableDoubleByteMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableDoubleByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableDoubleByteMapof()Same asempty().ImmutableDoubleByteMapof(double key, byte value)Same aswith(double, byte).ImmutableDoubleByteMapofAll(DoubleByteMap map)Same aswithAll(DoubleByteMap).ImmutableDoubleByteMapwith()Same asempty().ImmutableDoubleByteMapwith(double key, byte value)ImmutableDoubleByteMapwithAll(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(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableDoubleByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-