Class MutableLongStackFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.stack.mutable.primitive.MutableLongStackFactoryImpl
-
- All Implemented Interfaces:
MutableLongStackFactory
public class MutableLongStackFactoryImpl extends Object implements MutableLongStackFactory
MutableLongStackFactoryImpl is a factory implementation which creates instances of typeMutableLongStack. This file was automatically generated from template file mutablePrimitiveStackFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableLongStackFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableLongStackFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableLongStackempty()MutableLongStackof()MutableLongStackof(long... items)MutableLongStackofAll(Iterable<Long> iterable)MutableLongStackofAll(LongStream items)MutableLongStackofAll(LongIterable items)MutableLongStackofAllReversed(LongIterable items)MutableLongStackwith()MutableLongStackwith(long... items)MutableLongStackwithAll(Iterable<Long> iterable)MutableLongStackwithAll(LongStream items)MutableLongStackwithAll(LongIterable items)MutableLongStackwithAllReversed(LongIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableLongStackFactory INSTANCE
-
-
Method Detail
-
empty
public MutableLongStack empty()
- Specified by:
emptyin interfaceMutableLongStackFactory
-
of
public MutableLongStack of()
- Specified by:
ofin interfaceMutableLongStackFactory
-
with
public MutableLongStack with()
- Specified by:
within interfaceMutableLongStackFactory
-
of
public MutableLongStack of(long... items)
- Specified by:
ofin interfaceMutableLongStackFactory
-
with
public MutableLongStack with(long... items)
- Specified by:
within interfaceMutableLongStackFactory
-
ofAll
public MutableLongStack ofAll(LongIterable items)
- Specified by:
ofAllin interfaceMutableLongStackFactory
-
withAll
public MutableLongStack withAll(LongIterable items)
- Specified by:
withAllin interfaceMutableLongStackFactory
-
ofAll
public MutableLongStack ofAll(Iterable<Long> iterable)
- Specified by:
ofAllin interfaceMutableLongStackFactory- Since:
- 10.0
-
withAll
public MutableLongStack withAll(Iterable<Long> iterable)
- Specified by:
withAllin interfaceMutableLongStackFactory- Since:
- 10.0
-
ofAllReversed
public MutableLongStack ofAllReversed(LongIterable items)
- Specified by:
ofAllReversedin interfaceMutableLongStackFactory
-
withAllReversed
public MutableLongStack withAllReversed(LongIterable items)
- Specified by:
withAllReversedin interfaceMutableLongStackFactory
-
ofAll
public MutableLongStack ofAll(LongStream items)
- Specified by:
ofAllin interfaceMutableLongStackFactory- Since:
- 9.0
-
withAll
public MutableLongStack withAll(LongStream items)
- Specified by:
withAllin interfaceMutableLongStackFactory- Since:
- 9.0
-
-