Class ImmutableDoubleListFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.list.immutable.primitive.ImmutableDoubleListFactoryImpl
-
- All Implemented Interfaces:
ImmutableDoubleListFactory
public class ImmutableDoubleListFactoryImpl extends Object implements ImmutableDoubleListFactory
ImmutableDoubleListFactoryImpl is a factory implementation which creates instances of typeImmutableDoubleList. This file was automatically generated from template file immutablePrimitiveListFactoryImpl.stg.- Since:
- 3.2.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableDoubleListFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableDoubleListFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableDoubleListempty()ImmutableDoubleListof()ImmutableDoubleListof(double one)ImmutableDoubleListof(double... items)ImmutableDoubleListofAll(Iterable<Double> iterable)ImmutableDoubleListofAll(DoubleStream items)ImmutableDoubleListofAll(DoubleIterable items)ImmutableDoubleListwith()ImmutableDoubleListwith(double one)ImmutableDoubleListwith(double... items)ImmutableDoubleListwithAll(Iterable<Double> iterable)ImmutableDoubleListwithAll(DoubleStream items)ImmutableDoubleListwithAll(DoubleIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableDoubleListFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableDoubleList empty()
- Specified by:
emptyin interfaceImmutableDoubleListFactory
-
of
public ImmutableDoubleList of()
- Specified by:
ofin interfaceImmutableDoubleListFactory
-
with
public ImmutableDoubleList with()
- Specified by:
within interfaceImmutableDoubleListFactory
-
of
public ImmutableDoubleList of(double one)
- Specified by:
ofin interfaceImmutableDoubleListFactory
-
with
public ImmutableDoubleList with(double one)
- Specified by:
within interfaceImmutableDoubleListFactory
-
of
public ImmutableDoubleList of(double... items)
- Specified by:
ofin interfaceImmutableDoubleListFactory
-
with
public ImmutableDoubleList with(double... items)
- Specified by:
within interfaceImmutableDoubleListFactory
-
ofAll
public ImmutableDoubleList ofAll(DoubleIterable items)
- Specified by:
ofAllin interfaceImmutableDoubleListFactory
-
withAll
public ImmutableDoubleList withAll(DoubleIterable items)
- Specified by:
withAllin interfaceImmutableDoubleListFactory
-
ofAll
public ImmutableDoubleList ofAll(Iterable<Double> iterable)
- Specified by:
ofAllin interfaceImmutableDoubleListFactory- Since:
- 10.0
-
withAll
public ImmutableDoubleList withAll(Iterable<Double> iterable)
- Specified by:
withAllin interfaceImmutableDoubleListFactory- Since:
- 10.0
-
ofAll
public ImmutableDoubleList ofAll(DoubleStream items)
- Specified by:
ofAllin interfaceImmutableDoubleListFactory- Since:
- 9.0
-
withAll
public ImmutableDoubleList withAll(DoubleStream items)
- Specified by:
withAllin interfaceImmutableDoubleListFactory- Since:
- 9.0
-
-