Enum MutableObjectShortMapFactoryImpl
java.lang.Object
java.lang.Enum<MutableObjectShortMapFactoryImpl>
org.eclipse.collections.impl.map.mutable.primitive.MutableObjectShortMapFactoryImpl
- All Implemented Interfaces:
Serializable,Comparable<MutableObjectShortMapFactoryImpl>,java.lang.constant.Constable,MutableObjectShortMapFactory
public enum MutableObjectShortMapFactoryImpl
extends Enum<MutableObjectShortMapFactoryImpl>
implements MutableObjectShortMapFactory
MutableObjectShortMapFactoryImpl is a factory implementation which creates instances of type
MutableObjectShortMap.
This file was automatically generated from template file mutableObjectPrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescription<K> MutableObjectShortMap<K>empty()<T,K> MutableObjectShortMap<K> from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableObjectShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<K> MutableObjectShortMap<K>of()Same asMutableObjectShortMapFactory.empty().<K> MutableObjectShortMap<K>ofAll(ObjectShortMap<? extends K> map) <K> MutableObjectShortMap<K>ofInitialCapacity(int capacity) Same asMutableObjectShortMapFactory.empty().Returns the enum constant of this type with the specified name.static MutableObjectShortMapFactoryImpl[]values()Returns an array containing the constants of this enum type, in the order they are declared.<K> MutableObjectShortMap<K>with()Same asMutableObjectShortMapFactory.empty().<K> MutableObjectShortMap<K>withAll(ObjectShortMap<? extends K> map) <K> MutableObjectShortMap<K>withInitialCapacity(int capacity) Same asMutableObjectShortMapFactory.empty().Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
INSTANCE
-
-
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 interfaceMutableObjectShortMapFactory
-
of
Description copied from interface:MutableObjectShortMapFactorySame asMutableObjectShortMapFactory.empty().- Specified by:
ofin interfaceMutableObjectShortMapFactory
-
with
Description copied from interface:MutableObjectShortMapFactorySame asMutableObjectShortMapFactory.empty().- Specified by:
within interfaceMutableObjectShortMapFactory
-
ofInitialCapacity
Description copied from interface:MutableObjectShortMapFactorySame asMutableObjectShortMapFactory.empty(). but takes in an initial capacity- Specified by:
ofInitialCapacityin interfaceMutableObjectShortMapFactory
-
withInitialCapacity
Description copied from interface:MutableObjectShortMapFactorySame asMutableObjectShortMapFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableObjectShortMapFactory
-
ofAll
Description copied from interface:MutableObjectShortMapFactory- Specified by:
ofAllin interfaceMutableObjectShortMapFactory
-
withAll
- Specified by:
withAllin interfaceMutableObjectShortMapFactory
-
from
public <T,K> MutableObjectShortMap<K> from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, ShortFunction<? super T> valueFunction) Description copied from interface:MutableObjectShortMapFactoryCreates anMutableObjectShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceMutableObjectShortMapFactory
-