Interface ImmutableObjectCharMapFactory
-
- All Known Implementing Classes:
ImmutableObjectCharMapFactoryImpl
public interface ImmutableObjectCharMapFactory
A factory which creates instances of typeImmutableObjectCharMap
. This file was automatically generated from template file immutableObjectPrimitiveMapFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <K> ImmutableObjectCharMap<K>
empty()
<T,K>
ImmutableObjectCharMap<K>from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableObjectCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<K> ImmutableObjectCharMap<K>
of()
Same asempty()
.<K> ImmutableObjectCharMap<K>
of(K key, char value)
Same aswith(Object, char)
.<K> ImmutableObjectCharMap<K>
ofAll(ObjectCharMap<? extends K> map)
Same aswithAll(ObjectCharMap)
.<K> ImmutableObjectCharMap<K>
with()
Same asempty()
.<K> ImmutableObjectCharMap<K>
with(K key, char value)
<K> ImmutableObjectCharMap<K>
withAll(ObjectCharMap<? extends K> map)
-
-
-
Method Detail
-
empty
<K> ImmutableObjectCharMap<K> empty()
- Since:
- 6.0
-
of
<K> ImmutableObjectCharMap<K> of()
Same asempty()
.
-
with
<K> ImmutableObjectCharMap<K> with()
Same asempty()
.
-
of
<K> ImmutableObjectCharMap<K> of(K key, char value)
Same aswith(Object, char)
.
-
with
<K> ImmutableObjectCharMap<K> with(K key, char value)
-
ofAll
<K> ImmutableObjectCharMap<K> ofAll(ObjectCharMap<? extends K> map)
Same aswithAll(ObjectCharMap)
.
-
withAll
<K> ImmutableObjectCharMap<K> withAll(ObjectCharMap<? extends K> map)
-
from
<T,K> ImmutableObjectCharMap<K> from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableObjectCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-