Interface ImmutableByteDoubleMapFactory
-
- All Known Implementing Classes:
ImmutableByteDoubleMapFactoryImpl
public interface ImmutableByteDoubleMapFactory
A factory which creates instances of typeImmutableByteDoubleMap
. 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 ImmutableByteDoubleMap
empty()
<T> ImmutableByteDoubleMap
from(java.lang.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 Detail
-
empty
ImmutableByteDoubleMap empty()
- Since:
- 6.0
-
of
ImmutableByteDoubleMap of()
Same asempty()
.
-
with
ImmutableByteDoubleMap with()
Same asempty()
.
-
of
ImmutableByteDoubleMap of(byte key, double value)
Same aswith(byte, double)
.
-
with
ImmutableByteDoubleMap with(byte key, double value)
-
ofAll
ImmutableByteDoubleMap ofAll(ByteDoubleMap map)
Same aswithAll(ByteDoubleMap)
.
-
withAll
ImmutableByteDoubleMap withAll(ByteDoubleMap map)
-
from
<T> ImmutableByteDoubleMap from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableByteDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-