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 typeImmutableObjectCharMap. This file was automatically generated from template file immutableObjectPrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableObjectCharMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableObjectCharMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <K> ImmutableObjectCharMap<K>empty()<T,K>
ImmutableObjectCharMap<K>from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, CharFunction<? super T> valueFunction)<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 Detail
-
INSTANCE
public static final ImmutableObjectCharMapFactory INSTANCE
-
-
Method Detail
-
empty
public <K> ImmutableObjectCharMap<K> empty()
- Specified by:
emptyin interfaceImmutableObjectCharMapFactory
-
of
public <K> ImmutableObjectCharMap<K> of()
- Specified by:
ofin interfaceImmutableObjectCharMapFactory
-
with
public <K> ImmutableObjectCharMap<K> with()
- Specified by:
within interfaceImmutableObjectCharMapFactory
-
of
public <K> ImmutableObjectCharMap<K> of(K key, char value)
- Specified by:
ofin interfaceImmutableObjectCharMapFactory
-
with
public <K> ImmutableObjectCharMap<K> with(K key, char value)
- Specified by:
within interfaceImmutableObjectCharMapFactory
-
ofAll
public <K> ImmutableObjectCharMap<K> ofAll(ObjectCharMap<? extends K> map)
- Specified by:
ofAllin interfaceImmutableObjectCharMapFactory
-
withAll
public <K> ImmutableObjectCharMap<K> withAll(ObjectCharMap<? extends K> map)
- Specified by:
withAllin interfaceImmutableObjectCharMapFactory
-
from
public <T,K> ImmutableObjectCharMap<K> from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, CharFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableObjectCharMapFactory
-
-