Class MutableDoubleStackFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.stack.mutable.primitive.MutableDoubleStackFactoryImpl
-
- All Implemented Interfaces:
MutableDoubleStackFactory
public class MutableDoubleStackFactoryImpl extends java.lang.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()Same asMutableDoubleStackFactory.empty().MutableDoubleStackof(double... items)MutableDoubleStackofAll(java.lang.Iterable<java.lang.Double> iterable)MutableDoubleStackofAll(java.util.stream.DoubleStream items)MutableDoubleStackofAll(DoubleIterable items)MutableDoubleStackofAllReversed(DoubleIterable items)MutableDoubleStackwith()Same asMutableDoubleStackFactory.empty().MutableDoubleStackwith(double... items)MutableDoubleStackwithAll(java.lang.Iterable<java.lang.Double> iterable)MutableDoubleStackwithAll(java.util.stream.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()
Description copied from interface:MutableDoubleStackFactorySame asMutableDoubleStackFactory.empty().- Specified by:
ofin interfaceMutableDoubleStackFactory
-
with
public MutableDoubleStack with()
Description copied from interface:MutableDoubleStackFactorySame asMutableDoubleStackFactory.empty().- Specified by:
within interfaceMutableDoubleStackFactory
-
of
public MutableDoubleStack of(double... items)
Description copied from interface:MutableDoubleStackFactory- Specified by:
ofin interfaceMutableDoubleStackFactory
-
with
public MutableDoubleStack with(double... items)
- Specified by:
within interfaceMutableDoubleStackFactory
-
ofAll
public MutableDoubleStack ofAll(DoubleIterable items)
Description copied from interface:MutableDoubleStackFactory- Specified by:
ofAllin interfaceMutableDoubleStackFactory
-
withAll
public MutableDoubleStack withAll(DoubleIterable items)
- Specified by:
withAllin interfaceMutableDoubleStackFactory
-
ofAll
public MutableDoubleStack ofAll(java.lang.Iterable<java.lang.Double> iterable)
Description copied from interface:MutableDoubleStackFactory- Specified by:
ofAllin interfaceMutableDoubleStackFactory- Since:
- 10.0
-
withAll
public MutableDoubleStack withAll(java.lang.Iterable<java.lang.Double> iterable)
- Specified by:
withAllin interfaceMutableDoubleStackFactory- Since:
- 10.0
-
ofAllReversed
public MutableDoubleStack ofAllReversed(DoubleIterable items)
Description copied from interface:MutableDoubleStackFactory- Specified by:
ofAllReversedin interfaceMutableDoubleStackFactory
-
withAllReversed
public MutableDoubleStack withAllReversed(DoubleIterable items)
- Specified by:
withAllReversedin interfaceMutableDoubleStackFactory
-
ofAll
public MutableDoubleStack ofAll(java.util.stream.DoubleStream items)
- Specified by:
ofAllin interfaceMutableDoubleStackFactory- Since:
- 9.0
-
withAll
public MutableDoubleStack withAll(java.util.stream.DoubleStream items)
- Specified by:
withAllin interfaceMutableDoubleStackFactory- Since:
- 9.0
-
-