Enum MutableDoubleListFactoryImpl
java.lang.Object
java.lang.Enum<MutableDoubleListFactoryImpl>
org.eclipse.collections.impl.list.mutable.primitive.MutableDoubleListFactoryImpl
- All Implemented Interfaces:
Serializable
,Comparable<MutableDoubleListFactoryImpl>
,java.lang.constant.Constable
,MutableDoubleListFactory
public enum MutableDoubleListFactoryImpl extends Enum<MutableDoubleListFactoryImpl> implements MutableDoubleListFactory
MutableDoubleListFactoryImpl is a factory implementation which creates instances of type
MutableDoubleList
.
This file was automatically generated from template file mutablePrimitiveListFactoryImpl.stg.- Since:
- 6.0.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Method Summary
Modifier and Type Method Description MutableDoubleList
empty()
MutableDoubleList
of()
Same asMutableDoubleListFactory.empty()
.MutableDoubleList
of(double... items)
MutableDoubleList
ofAll(Iterable<Double> iterable)
MutableDoubleList
ofAll(DoubleStream items)
MutableDoubleList
ofAll(DoubleIterable items)
static MutableDoubleListFactoryImpl
valueOf(String name)
Returns the enum constant of this type with the specified name.static MutableDoubleListFactoryImpl[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.MutableDoubleList
with()
Same asMutableDoubleListFactory.empty()
.MutableDoubleList
with(double... items)
Creates a new list using the passeditems
argument as the backing store.MutableDoubleList
withAll(Iterable<Double> iterable)
MutableDoubleList
withAll(DoubleStream items)
MutableDoubleList
withAll(DoubleIterable items)
MutableDoubleList
withInitialCapacity(int capacity)
Same asMutableDoubleListFactory.empty()
.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from interface org.eclipse.collections.api.factory.list.primitive.MutableDoubleListFactory
wrapCopy
-
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:
empty
in interfaceMutableDoubleListFactory
-
of
Description copied from interface:MutableDoubleListFactory
Same asMutableDoubleListFactory.empty()
.- Specified by:
of
in interfaceMutableDoubleListFactory
-
with
Description copied from interface:MutableDoubleListFactory
Same asMutableDoubleListFactory.empty()
.- Specified by:
with
in interfaceMutableDoubleListFactory
-
withInitialCapacity
Description copied from interface:MutableDoubleListFactory
Same asMutableDoubleListFactory.empty()
. but takes in an initial capacity- Specified by:
withInitialCapacity
in interfaceMutableDoubleListFactory
-
of
Description copied from interface:MutableDoubleListFactory
- Specified by:
of
in interfaceMutableDoubleListFactory
-
with
Creates a new list using the passeditems
argument as the backing store.!!! WARNING: This method uses the passed in array, so can be very unsafe if the original array is held onto anywhere else. !!!
- Specified by:
with
in interfaceMutableDoubleListFactory
-
ofAll
Description copied from interface:MutableDoubleListFactory
- Specified by:
ofAll
in interfaceMutableDoubleListFactory
-
withAll
- Specified by:
withAll
in interfaceMutableDoubleListFactory
-
ofAll
Description copied from interface:MutableDoubleListFactory
- Specified by:
ofAll
in interfaceMutableDoubleListFactory
- Since:
- 10.0
-
withAll
- Specified by:
withAll
in interfaceMutableDoubleListFactory
- Since:
- 10.0
-
ofAll
- Specified by:
ofAll
in interfaceMutableDoubleListFactory
- Since:
- 9.0
-
withAll
- Specified by:
withAll
in interfaceMutableDoubleListFactory
- Since:
- 9.0
-