Enum MutableDoubleByteMapFactoryImpl
java.lang.Object
java.lang.Enum<MutableDoubleByteMapFactoryImpl>
org.eclipse.collections.impl.map.mutable.primitive.MutableDoubleByteMapFactoryImpl
- All Implemented Interfaces:
Serializable,Comparable<MutableDoubleByteMapFactoryImpl>,java.lang.constant.Constable,MutableDoubleByteMapFactory
public enum MutableDoubleByteMapFactoryImpl extends Enum<MutableDoubleByteMapFactoryImpl> implements MutableDoubleByteMapFactory
MutableDoubleByteMapFactoryImpl is a factory implementation which creates instances of type
MutableDoubleByteMap.
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 MutableDoubleByteMapempty()<T> MutableDoubleByteMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableDoubleByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleByteMapof()Same asMutableDoubleByteMapFactory.empty().MutableDoubleByteMapofAll(DoubleByteMap map)MutableDoubleByteMapofInitialCapacity(int capacity)Same asMutableDoubleByteMapFactory.empty().static MutableDoubleByteMapFactoryImplvalueOf(String name)Returns the enum constant of this type with the specified name.static MutableDoubleByteMapFactoryImpl[]values()Returns an array containing the constants of this enum type, in the order they are declared.MutableDoubleByteMapwith()Same asMutableDoubleByteMapFactory.empty().MutableDoubleByteMapwithAll(DoubleByteMap map)MutableDoubleByteMapwithInitialCapacity(int capacity)Same asMutableDoubleByteMapFactory.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 interfaceMutableDoubleByteMapFactory
-
of
Description copied from interface:MutableDoubleByteMapFactorySame asMutableDoubleByteMapFactory.empty().- Specified by:
ofin interfaceMutableDoubleByteMapFactory
-
with
Description copied from interface:MutableDoubleByteMapFactorySame asMutableDoubleByteMapFactory.empty().- Specified by:
within interfaceMutableDoubleByteMapFactory
-
ofInitialCapacity
Description copied from interface:MutableDoubleByteMapFactorySame asMutableDoubleByteMapFactory.empty(). but takes in an initial capacity- Specified by:
ofInitialCapacityin interfaceMutableDoubleByteMapFactory
-
withInitialCapacity
Description copied from interface:MutableDoubleByteMapFactorySame asMutableDoubleByteMapFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableDoubleByteMapFactory
-
ofAll
Description copied from interface:MutableDoubleByteMapFactory- Specified by:
ofAllin interfaceMutableDoubleByteMapFactory
-
withAll
- Specified by:
withAllin interfaceMutableDoubleByteMapFactory
-
from
public <T> MutableDoubleByteMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Description copied from interface:MutableDoubleByteMapFactoryCreates anMutableDoubleByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceMutableDoubleByteMapFactory
-