Enum MutableObjectCharMapFactoryImpl
java.lang.Object
java.lang.Enum<MutableObjectCharMapFactoryImpl>
org.eclipse.collections.impl.map.mutable.primitive.MutableObjectCharMapFactoryImpl
- All Implemented Interfaces:
Serializable,Comparable<MutableObjectCharMapFactoryImpl>,java.lang.constant.Constable,MutableObjectCharMapFactory
public enum MutableObjectCharMapFactoryImpl extends Enum<MutableObjectCharMapFactoryImpl> implements MutableObjectCharMapFactory
MutableObjectCharMapFactoryImpl is a factory implementation which creates instances of type
MutableObjectCharMap.
This file was automatically generated from template file mutableObjectPrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE -
Method Summary
Modifier and Type Method Description <K> MutableObjectCharMap<K>empty()<T, K> MutableObjectCharMap<K>from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableObjectCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<K> MutableObjectCharMap<K>of()Same asMutableObjectCharMapFactory.empty().<K> MutableObjectCharMap<K>ofAll(ObjectCharMap<? extends K> map)<K> MutableObjectCharMap<K>ofInitialCapacity(int capacity)Same asMutableObjectCharMapFactory.empty().static MutableObjectCharMapFactoryImplvalueOf(String name)Returns the enum constant of this type with the specified name.static MutableObjectCharMapFactoryImpl[]values()Returns an array containing the constants of this enum type, in the order they are declared.<K> MutableObjectCharMap<K>with()Same asMutableObjectCharMapFactory.empty().<K> MutableObjectCharMap<K>withAll(ObjectCharMap<? extends K> map)<K> MutableObjectCharMap<K>withInitialCapacity(int capacity)Same asMutableObjectCharMapFactory.empty().Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
empty
- Specified by:
emptyin interfaceMutableObjectCharMapFactory
-
of
Description copied from interface:MutableObjectCharMapFactorySame asMutableObjectCharMapFactory.empty().- Specified by:
ofin interfaceMutableObjectCharMapFactory
-
with
Description copied from interface:MutableObjectCharMapFactorySame asMutableObjectCharMapFactory.empty().- Specified by:
within interfaceMutableObjectCharMapFactory
-
ofInitialCapacity
Description copied from interface:MutableObjectCharMapFactorySame asMutableObjectCharMapFactory.empty(). but takes in an initial capacity- Specified by:
ofInitialCapacityin interfaceMutableObjectCharMapFactory
-
withInitialCapacity
Description copied from interface:MutableObjectCharMapFactorySame asMutableObjectCharMapFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableObjectCharMapFactory
-
ofAll
Description copied from interface:MutableObjectCharMapFactory- Specified by:
ofAllin interfaceMutableObjectCharMapFactory
-
withAll
- Specified by:
withAllin interfaceMutableObjectCharMapFactory
-
from
public <T, K> MutableObjectCharMap<K> from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, CharFunction<? super T> valueFunction)Description copied from interface:MutableObjectCharMapFactoryCreates anMutableObjectCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceMutableObjectCharMapFactory
-