public enum MutableDoubleListFactoryImpl extends Enum<MutableDoubleListFactoryImpl> implements MutableDoubleListFactory
MutableDoubleList.
This file was automatically generated from template file mutablePrimitiveListFactoryImpl.stg.| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleList |
empty() |
MutableDoubleList |
of() |
MutableDoubleList |
of(double... items) |
MutableDoubleList |
ofAll(DoubleIterable items) |
MutableDoubleList |
ofAll(DoubleStream items) |
MutableDoubleList |
ofAll(Iterable<Double> iterable) |
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() |
MutableDoubleList |
with(double... items)
Creates a new list using the passed
items argument as the backing store. |
MutableDoubleList |
withAll(DoubleIterable items) |
MutableDoubleList |
withAll(DoubleStream items) |
MutableDoubleList |
withAll(Iterable<Double> iterable) |
MutableDoubleList |
withInitialCapacity(int capacity) |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOfwrapCopypublic static final MutableDoubleListFactoryImpl INSTANCE
public static MutableDoubleListFactoryImpl[] values()
for (MutableDoubleListFactoryImpl c : MutableDoubleListFactoryImpl.values()) System.out.println(c);
public static MutableDoubleListFactoryImpl valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic MutableDoubleList empty()
empty in interface MutableDoubleListFactorypublic MutableDoubleList of()
of in interface MutableDoubleListFactorypublic MutableDoubleList with()
with in interface MutableDoubleListFactorypublic MutableDoubleList withInitialCapacity(int capacity)
withInitialCapacity in interface MutableDoubleListFactorypublic MutableDoubleList of(double... items)
of in interface MutableDoubleListFactorypublic MutableDoubleList with(double... items)
items 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. !!!
with in interface MutableDoubleListFactorypublic MutableDoubleList ofAll(DoubleIterable items)
ofAll in interface MutableDoubleListFactorypublic MutableDoubleList withAll(DoubleIterable items)
withAll in interface MutableDoubleListFactorypublic MutableDoubleList ofAll(Iterable<Double> iterable)
ofAll in interface MutableDoubleListFactorypublic MutableDoubleList withAll(Iterable<Double> iterable)
withAll in interface MutableDoubleListFactorypublic MutableDoubleList ofAll(DoubleStream items)
ofAll in interface MutableDoubleListFactorypublic MutableDoubleList withAll(DoubleStream items)
withAll in interface MutableDoubleListFactoryCopyright © 2004–2020. All rights reserved.