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