Interface ImmutableFloatByteMapFactory
public interface ImmutableFloatByteMapFactory
A factory which creates instances of type
ImmutableFloatByteMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableFloatByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(float key, byte value) Same aswith(float, byte).ofAll(FloatByteMap map) Same aswithAll(FloatByteMap).with()Same asempty().with(float key, byte value) withAll(FloatByteMap map)
-
Method Details
-
empty
ImmutableFloatByteMap empty()- Since:
- 6.0
-
of
Same asempty(). -
with
ImmutableFloatByteMap with()Same asempty(). -
of
Same aswith(float, byte). -
with
-
ofAll
Same aswithAll(FloatByteMap). -
withAll
-
from
<T> ImmutableFloatByteMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableFloatByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-