Class ImmutableObjectCharMapFactoryImpl
java.lang.Object
org.eclipse.collections.impl.map.immutable.primitive.ImmutableObjectCharMapFactoryImpl
- All Implemented Interfaces:
ImmutableObjectCharMapFactory
public class ImmutableObjectCharMapFactoryImpl
extends Object
implements ImmutableObjectCharMapFactory
ImmutableObjectCharMapFactoryImpl is a factory implementation which creates instances of type
ImmutableObjectCharMap
.
This file was automatically generated from template file immutableObjectPrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription<K> ImmutableObjectCharMap<K>
empty()
<T,
K> ImmutableObjectCharMap<K> from
(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()
<K> ImmutableObjectCharMap<K>
of
(K key, char value) <K> ImmutableObjectCharMap<K>
ofAll
(ObjectCharMap<? extends K> map) <K> ImmutableObjectCharMap<K>
with()
<K> ImmutableObjectCharMap<K>
with
(K key, char value) <K> ImmutableObjectCharMap<K>
withAll
(ObjectCharMap<? extends K> map)
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
ImmutableObjectCharMapFactoryImpl
public ImmutableObjectCharMapFactoryImpl()
-
-
Method Details
-
empty
- Specified by:
empty
in interfaceImmutableObjectCharMapFactory
-
of
Description copied from interface:ImmutableObjectCharMapFactory
- Specified by:
of
in interfaceImmutableObjectCharMapFactory
-
with
Description copied from interface:ImmutableObjectCharMapFactory
- Specified by:
with
in interfaceImmutableObjectCharMapFactory
-
of
Description copied from interface:ImmutableObjectCharMapFactory
- Specified by:
of
in interfaceImmutableObjectCharMapFactory
-
with
- Specified by:
with
in interfaceImmutableObjectCharMapFactory
-
ofAll
Description copied from interface:ImmutableObjectCharMapFactory
- Specified by:
ofAll
in interfaceImmutableObjectCharMapFactory
-
withAll
- Specified by:
withAll
in interfaceImmutableObjectCharMapFactory
-
from
public <T,K> ImmutableObjectCharMap<K> from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, CharFunction<? super T> valueFunction) Description copied from interface:ImmutableObjectCharMapFactory
Creates anImmutableObjectCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceImmutableObjectCharMapFactory
-