Enum MutableByteShortMapFactoryImpl
java.lang.Object
java.lang.Enum<MutableByteShortMapFactoryImpl>
org.eclipse.collections.impl.map.mutable.primitive.MutableByteShortMapFactoryImpl
- All Implemented Interfaces:
Serializable,Comparable<MutableByteShortMapFactoryImpl>,java.lang.constant.Constable,MutableByteShortMapFactory
public enum MutableByteShortMapFactoryImpl extends Enum<MutableByteShortMapFactoryImpl> implements MutableByteShortMapFactory
MutableByteShortMapFactoryImpl is a factory implementation which creates instances of type
MutableByteShortMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE -
Method Summary
Modifier and Type Method Description MutableByteShortMapempty()<T> MutableByteShortMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableByteShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteShortMapof()Same asMutableByteShortMapFactory.empty().MutableByteShortMapofAll(ByteShortMap map)MutableByteShortMapofInitialCapacity(int capacity)Same asMutableByteShortMapFactory.empty().static MutableByteShortMapFactoryImplvalueOf(String name)Returns the enum constant of this type with the specified name.static MutableByteShortMapFactoryImpl[]values()Returns an array containing the constants of this enum type, in the order they are declared.MutableByteShortMapwith()Same asMutableByteShortMapFactory.empty().MutableByteShortMapwithAll(ByteShortMap map)MutableByteShortMapwithInitialCapacity(int capacity)Same asMutableByteShortMapFactory.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 interfaceMutableByteShortMapFactory
-
of
Description copied from interface:MutableByteShortMapFactorySame asMutableByteShortMapFactory.empty().- Specified by:
ofin interfaceMutableByteShortMapFactory
-
with
Description copied from interface:MutableByteShortMapFactorySame asMutableByteShortMapFactory.empty().- Specified by:
within interfaceMutableByteShortMapFactory
-
ofInitialCapacity
Description copied from interface:MutableByteShortMapFactorySame asMutableByteShortMapFactory.empty(). but takes in an initial capacity- Specified by:
ofInitialCapacityin interfaceMutableByteShortMapFactory
-
withInitialCapacity
Description copied from interface:MutableByteShortMapFactorySame asMutableByteShortMapFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableByteShortMapFactory
-
ofAll
Description copied from interface:MutableByteShortMapFactory- Specified by:
ofAllin interfaceMutableByteShortMapFactory
-
withAll
- Specified by:
withAllin interfaceMutableByteShortMapFactory
-
from
public <T> MutableByteShortMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Description copied from interface:MutableByteShortMapFactoryCreates anMutableByteShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceMutableByteShortMapFactory
-