Interface ImmutableByteFloatMapFactory
- All Known Implementing Classes:
ImmutableByteFloatMapFactoryImpl
public interface ImmutableByteFloatMapFactory
A factory which creates instances of type
ImmutableByteFloatMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableByteFloatMap
empty()
<T> ImmutableByteFloatMap
from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableByteFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteFloatMap
of()
Same asempty()
.ImmutableByteFloatMap
of(byte key, float value)
Same aswith(byte, float)
.ImmutableByteFloatMap
ofAll(ByteFloatMap map)
Same aswithAll(ByteFloatMap)
.ImmutableByteFloatMap
with()
Same asempty()
.ImmutableByteFloatMap
with(byte key, float value)
ImmutableByteFloatMap
withAll(ByteFloatMap map)
-
Method Details
-
empty
ImmutableByteFloatMap empty()- Since:
- 6.0
-
of
Same asempty()
. -
with
ImmutableByteFloatMap with()Same asempty()
. -
of
Same aswith(byte, float)
. -
with
-
ofAll
Same aswithAll(ByteFloatMap)
. -
withAll
-
from
<T> ImmutableByteFloatMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableByteFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-