Class MutableDoubleStackFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.stack.mutable.primitive.MutableDoubleStackFactoryImpl
-
- All Implemented Interfaces:
MutableDoubleStackFactory
public class MutableDoubleStackFactoryImpl extends Object implements MutableDoubleStackFactory
MutableDoubleStackFactoryImpl is a factory implementation which creates instances of typeMutableDoubleStack. This file was automatically generated from template file mutablePrimitiveStackFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableDoubleStackFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableDoubleStackFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableDoubleStackempty()MutableDoubleStackof()MutableDoubleStackof(double... items)MutableDoubleStackofAll(Iterable<Double> iterable)MutableDoubleStackofAll(DoubleStream items)MutableDoubleStackofAll(DoubleIterable items)MutableDoubleStackofAllReversed(DoubleIterable items)MutableDoubleStackwith()MutableDoubleStackwith(double... items)MutableDoubleStackwithAll(Iterable<Double> iterable)MutableDoubleStackwithAll(DoubleStream items)MutableDoubleStackwithAll(DoubleIterable items)MutableDoubleStackwithAllReversed(DoubleIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableDoubleStackFactory INSTANCE
-
-
Method Detail
-
empty
public MutableDoubleStack empty()
- Specified by:
emptyin interfaceMutableDoubleStackFactory
-
of
public MutableDoubleStack of()
- Specified by:
ofin interfaceMutableDoubleStackFactory
-
with
public MutableDoubleStack with()
- Specified by:
within interfaceMutableDoubleStackFactory
-
of
public MutableDoubleStack of(double... items)
- Specified by:
ofin interfaceMutableDoubleStackFactory
-
with
public MutableDoubleStack with(double... items)
- Specified by:
within interfaceMutableDoubleStackFactory
-
ofAll
public MutableDoubleStack ofAll(DoubleIterable items)
- Specified by:
ofAllin interfaceMutableDoubleStackFactory
-
withAll
public MutableDoubleStack withAll(DoubleIterable items)
- Specified by:
withAllin interfaceMutableDoubleStackFactory
-
ofAll
public MutableDoubleStack ofAll(Iterable<Double> iterable)
- Specified by:
ofAllin interfaceMutableDoubleStackFactory- Since:
- 10.0
-
withAll
public MutableDoubleStack withAll(Iterable<Double> iterable)
- Specified by:
withAllin interfaceMutableDoubleStackFactory- Since:
- 10.0
-
ofAllReversed
public MutableDoubleStack ofAllReversed(DoubleIterable items)
- Specified by:
ofAllReversedin interfaceMutableDoubleStackFactory
-
withAllReversed
public MutableDoubleStack withAllReversed(DoubleIterable items)
- Specified by:
withAllReversedin interfaceMutableDoubleStackFactory
-
ofAll
public MutableDoubleStack ofAll(DoubleStream items)
- Specified by:
ofAllin interfaceMutableDoubleStackFactory- Since:
- 9.0
-
withAll
public MutableDoubleStack withAll(DoubleStream items)
- Specified by:
withAllin interfaceMutableDoubleStackFactory- Since:
- 9.0
-
-