Class MutableShortStackFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.stack.mutable.primitive.MutableShortStackFactoryImpl
-
- All Implemented Interfaces:
MutableShortStackFactory
public class MutableShortStackFactoryImpl extends Object implements MutableShortStackFactory
MutableShortStackFactoryImpl is a factory implementation which creates instances of typeMutableShortStack. This file was automatically generated from template file mutablePrimitiveStackFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableShortStackFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableShortStackFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableShortStackempty()MutableShortStackof()MutableShortStackof(short... items)MutableShortStackofAll(Iterable<Short> iterable)MutableShortStackofAll(ShortIterable items)MutableShortStackofAllReversed(ShortIterable items)MutableShortStackwith()MutableShortStackwith(short... items)MutableShortStackwithAll(Iterable<Short> iterable)MutableShortStackwithAll(ShortIterable items)MutableShortStackwithAllReversed(ShortIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableShortStackFactory INSTANCE
-
-
Method Detail
-
empty
public MutableShortStack empty()
- Specified by:
emptyin interfaceMutableShortStackFactory
-
of
public MutableShortStack of()
- Specified by:
ofin interfaceMutableShortStackFactory
-
with
public MutableShortStack with()
- Specified by:
within interfaceMutableShortStackFactory
-
of
public MutableShortStack of(short... items)
- Specified by:
ofin interfaceMutableShortStackFactory
-
with
public MutableShortStack with(short... items)
- Specified by:
within interfaceMutableShortStackFactory
-
ofAll
public MutableShortStack ofAll(ShortIterable items)
- Specified by:
ofAllin interfaceMutableShortStackFactory
-
withAll
public MutableShortStack withAll(ShortIterable items)
- Specified by:
withAllin interfaceMutableShortStackFactory
-
ofAll
public MutableShortStack ofAll(Iterable<Short> iterable)
- Specified by:
ofAllin interfaceMutableShortStackFactory- Since:
- 10.0
-
withAll
public MutableShortStack withAll(Iterable<Short> iterable)
- Specified by:
withAllin interfaceMutableShortStackFactory- Since:
- 10.0
-
ofAllReversed
public MutableShortStack ofAllReversed(ShortIterable items)
- Specified by:
ofAllReversedin interfaceMutableShortStackFactory
-
withAllReversed
public MutableShortStack withAllReversed(ShortIterable items)
- Specified by:
withAllReversedin interfaceMutableShortStackFactory
-
-