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