Enum MutableDoubleIntMapFactoryImpl
java.lang.Object
java.lang.Enum<MutableDoubleIntMapFactoryImpl>
org.eclipse.collections.impl.map.mutable.primitive.MutableDoubleIntMapFactoryImpl
- All Implemented Interfaces:
Serializable,Comparable<MutableDoubleIntMapFactoryImpl>,java.lang.constant.Constable,MutableDoubleIntMapFactory
public enum MutableDoubleIntMapFactoryImpl extends Enum<MutableDoubleIntMapFactoryImpl> implements MutableDoubleIntMapFactory
MutableDoubleIntMapFactoryImpl is a factory implementation which creates instances of type
MutableDoubleIntMap.
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 MutableDoubleIntMapempty()<T> MutableDoubleIntMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleIntMapof()Same asMutableDoubleIntMapFactory.empty().MutableDoubleIntMapofAll(DoubleIntMap map)MutableDoubleIntMapofInitialCapacity(int capacity)Same asMutableDoubleIntMapFactory.empty().static MutableDoubleIntMapFactoryImplvalueOf(String name)Returns the enum constant of this type with the specified name.static MutableDoubleIntMapFactoryImpl[]values()Returns an array containing the constants of this enum type, in the order they are declared.MutableDoubleIntMapwith()Same asMutableDoubleIntMapFactory.empty().MutableDoubleIntMapwithAll(DoubleIntMap map)MutableDoubleIntMapwithInitialCapacity(int capacity)Same asMutableDoubleIntMapFactory.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 interfaceMutableDoubleIntMapFactory
-
of
Description copied from interface:MutableDoubleIntMapFactorySame asMutableDoubleIntMapFactory.empty().- Specified by:
ofin interfaceMutableDoubleIntMapFactory
-
with
Description copied from interface:MutableDoubleIntMapFactorySame asMutableDoubleIntMapFactory.empty().- Specified by:
within interfaceMutableDoubleIntMapFactory
-
ofInitialCapacity
Description copied from interface:MutableDoubleIntMapFactorySame asMutableDoubleIntMapFactory.empty(). but takes in an initial capacity- Specified by:
ofInitialCapacityin interfaceMutableDoubleIntMapFactory
-
withInitialCapacity
Description copied from interface:MutableDoubleIntMapFactorySame asMutableDoubleIntMapFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableDoubleIntMapFactory
-
ofAll
Description copied from interface:MutableDoubleIntMapFactory- Specified by:
ofAllin interfaceMutableDoubleIntMapFactory
-
withAll
- Specified by:
withAllin interfaceMutableDoubleIntMapFactory
-
from
public <T> MutableDoubleIntMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Description copied from interface:MutableDoubleIntMapFactoryCreates anMutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceMutableDoubleIntMapFactory
-