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