Interface ImmutableByteCharMapFactory
-
- All Known Implementing Classes:
ImmutableByteCharMapFactoryImpl
public interface ImmutableByteCharMapFactory
A factory which creates instances of typeImmutableByteCharMap
. 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 ImmutableByteCharMap
empty()
<T> ImmutableByteCharMap
from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableByteCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteCharMap
of()
Same asempty()
.ImmutableByteCharMap
of(byte key, char value)
Same aswith(byte, char)
.ImmutableByteCharMap
ofAll(ByteCharMap map)
Same aswithAll(ByteCharMap)
.ImmutableByteCharMap
with()
Same asempty()
.ImmutableByteCharMap
with(byte key, char value)
ImmutableByteCharMap
withAll(ByteCharMap map)
-
-
-
Method Detail
-
empty
ImmutableByteCharMap empty()
- Since:
- 6.0
-
of
ImmutableByteCharMap of()
Same asempty()
.
-
with
ImmutableByteCharMap with()
Same asempty()
.
-
of
ImmutableByteCharMap of(byte key, char value)
Same aswith(byte, char)
.
-
with
ImmutableByteCharMap with(byte key, char value)
-
ofAll
ImmutableByteCharMap ofAll(ByteCharMap map)
Same aswithAll(ByteCharMap)
.
-
withAll
ImmutableByteCharMap withAll(ByteCharMap map)
-
from
<T> ImmutableByteCharMap from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableByteCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-