Class MutableFloatStackFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.stack.mutable.primitive.MutableFloatStackFactoryImpl
-
- All Implemented Interfaces:
MutableFloatStackFactory
public class MutableFloatStackFactoryImpl extends Object implements MutableFloatStackFactory
MutableFloatStackFactoryImpl is a factory implementation which creates instances of typeMutableFloatStack. This file was automatically generated from template file mutablePrimitiveStackFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableFloatStackFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableFloatStackFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableFloatStackempty()MutableFloatStackof()MutableFloatStackof(float... items)MutableFloatStackofAll(Iterable<Float> iterable)MutableFloatStackofAll(FloatIterable items)MutableFloatStackofAllReversed(FloatIterable items)MutableFloatStackwith()MutableFloatStackwith(float... items)MutableFloatStackwithAll(Iterable<Float> iterable)MutableFloatStackwithAll(FloatIterable items)MutableFloatStackwithAllReversed(FloatIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableFloatStackFactory INSTANCE
-
-
Method Detail
-
empty
public MutableFloatStack empty()
- Specified by:
emptyin interfaceMutableFloatStackFactory
-
of
public MutableFloatStack of()
- Specified by:
ofin interfaceMutableFloatStackFactory
-
with
public MutableFloatStack with()
- Specified by:
within interfaceMutableFloatStackFactory
-
of
public MutableFloatStack of(float... items)
- Specified by:
ofin interfaceMutableFloatStackFactory
-
with
public MutableFloatStack with(float... items)
- Specified by:
within interfaceMutableFloatStackFactory
-
ofAll
public MutableFloatStack ofAll(FloatIterable items)
- Specified by:
ofAllin interfaceMutableFloatStackFactory
-
withAll
public MutableFloatStack withAll(FloatIterable items)
- Specified by:
withAllin interfaceMutableFloatStackFactory
-
ofAll
public MutableFloatStack ofAll(Iterable<Float> iterable)
- Specified by:
ofAllin interfaceMutableFloatStackFactory- Since:
- 10.0
-
withAll
public MutableFloatStack withAll(Iterable<Float> iterable)
- Specified by:
withAllin interfaceMutableFloatStackFactory- Since:
- 10.0
-
ofAllReversed
public MutableFloatStack ofAllReversed(FloatIterable items)
- Specified by:
ofAllReversedin interfaceMutableFloatStackFactory
-
withAllReversed
public MutableFloatStack withAllReversed(FloatIterable items)
- Specified by:
withAllReversedin interfaceMutableFloatStackFactory
-
-