Enum MutableByteIntMapFactoryImpl
java.lang.Object
java.lang.Enum<MutableByteIntMapFactoryImpl>
org.eclipse.collections.impl.map.mutable.primitive.MutableByteIntMapFactoryImpl
- All Implemented Interfaces:
Serializable,Comparable<MutableByteIntMapFactoryImpl>,java.lang.constant.Constable,MutableByteIntMapFactory
public enum MutableByteIntMapFactoryImpl
extends Enum<MutableByteIntMapFactoryImpl>
implements MutableByteIntMapFactory
MutableByteIntMapFactoryImpl is a factory implementation which creates instances of type
MutableByteIntMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.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 TypeMethodDescriptionempty()from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableByteIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asMutableByteIntMapFactory.empty().ofAll(ByteIntMap map) ofInitialCapacity(int capacity) Same asMutableByteIntMapFactory.empty().static MutableByteIntMapFactoryImplReturns the enum constant of this type with the specified name.static MutableByteIntMapFactoryImpl[]values()Returns an array containing the constants of this enum type, in the order they are declared.with()Same asMutableByteIntMapFactory.empty().withAll(ByteIntMap map) withInitialCapacity(int capacity) Same asMutableByteIntMapFactory.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 interfaceMutableByteIntMapFactory
-
of
Description copied from interface:MutableByteIntMapFactorySame asMutableByteIntMapFactory.empty().- Specified by:
ofin interfaceMutableByteIntMapFactory
-
with
Description copied from interface:MutableByteIntMapFactorySame asMutableByteIntMapFactory.empty().- Specified by:
within interfaceMutableByteIntMapFactory
-
ofInitialCapacity
Description copied from interface:MutableByteIntMapFactorySame asMutableByteIntMapFactory.empty(). but takes in an initial capacity- Specified by:
ofInitialCapacityin interfaceMutableByteIntMapFactory
-
withInitialCapacity
Description copied from interface:MutableByteIntMapFactorySame asMutableByteIntMapFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableByteIntMapFactory
-
ofAll
Description copied from interface:MutableByteIntMapFactory- Specified by:
ofAllin interfaceMutableByteIntMapFactory
-
withAll
- Specified by:
withAllin interfaceMutableByteIntMapFactory
-
from
public <T> MutableByteIntMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Description copied from interface:MutableByteIntMapFactoryCreates anMutableByteIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceMutableByteIntMapFactory
-