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