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 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 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 anImmutableDoubleByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-