Interface ImmutableFloatByteMapFactory
- All Known Implementing Classes:
ImmutableFloatByteMapFactoryImpl
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 Type Method Description ImmutableFloatByteMap
empty()
<T> ImmutableFloatByteMap
from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableFloatByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableFloatByteMap
of()
Same asempty()
.ImmutableFloatByteMap
of(float key, byte value)
Same aswith(float, byte)
.ImmutableFloatByteMap
ofAll(FloatByteMap map)
Same aswithAll(FloatByteMap)
.ImmutableFloatByteMap
with()
Same asempty()
.ImmutableFloatByteMap
with(float key, byte value)
ImmutableFloatByteMap
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 anImmutableFloatByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-