Enum MutableDoubleDoubleMapFactoryImpl
java.lang.Object
java.lang.Enum<MutableDoubleDoubleMapFactoryImpl>
org.eclipse.collections.impl.map.mutable.primitive.MutableDoubleDoubleMapFactoryImpl
- All Implemented Interfaces:
Serializable,Comparable<MutableDoubleDoubleMapFactoryImpl>,java.lang.constant.Constable,MutableDoubleDoubleMapFactory
public enum MutableDoubleDoubleMapFactoryImpl extends Enum<MutableDoubleDoubleMapFactoryImpl> implements MutableDoubleDoubleMapFactory
MutableDoubleDoubleMapFactoryImpl is a factory implementation which creates instances of type
MutableDoubleDoubleMap.
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 MutableDoubleDoubleMapempty()<T> MutableDoubleDoubleMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableDoubleDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleDoubleMapof()MutableDoubleDoubleMapofAll(DoubleDoubleMap map)MutableDoubleDoubleMapofInitialCapacity(int capacity)static MutableDoubleDoubleMapFactoryImplvalueOf(String name)Returns the enum constant of this type with the specified name.static MutableDoubleDoubleMapFactoryImpl[]values()Returns an array containing the constants of this enum type, in the order they are declared.MutableDoubleDoubleMapwith()MutableDoubleDoubleMapwithAll(DoubleDoubleMap map)MutableDoubleDoubleMapwithInitialCapacity(int capacity)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 interfaceMutableDoubleDoubleMapFactory
-
of
Description copied from interface:MutableDoubleDoubleMapFactory- Specified by:
ofin interfaceMutableDoubleDoubleMapFactory
-
with
Description copied from interface:MutableDoubleDoubleMapFactory- Specified by:
within interfaceMutableDoubleDoubleMapFactory
-
ofInitialCapacity
Description copied from interface:MutableDoubleDoubleMapFactorySame asMutableDoubleDoubleMapFactory.empty(). but takes in an initial capacity- Specified by:
ofInitialCapacityin interfaceMutableDoubleDoubleMapFactory
-
withInitialCapacity
Description copied from interface:MutableDoubleDoubleMapFactorySame asMutableDoubleDoubleMapFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableDoubleDoubleMapFactory
-
ofAll
Description copied from interface:MutableDoubleDoubleMapFactory- Specified by:
ofAllin interfaceMutableDoubleDoubleMapFactory
-
withAll
- Specified by:
withAllin interfaceMutableDoubleDoubleMapFactory
-
from
public <T> MutableDoubleDoubleMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Description copied from interface:MutableDoubleDoubleMapFactoryCreates anMutableDoubleDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceMutableDoubleDoubleMapFactory
-