public class MutableDoubleListFactoryImpl extends Object implements MutableDoubleListFactory
MutableDoubleList.
This file was automatically generated from template file mutablePrimitiveListFactoryImpl.stg.| Modifier and Type | Field and Description |
|---|---|
static MutableDoubleListFactory |
INSTANCE |
| Constructor and Description |
|---|
MutableDoubleListFactoryImpl() |
| 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) |
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) |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitwrapCopypublic static final MutableDoubleListFactory INSTANCE
public 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–2022. All rights reserved.