Class MutableShortStackFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.stack.mutable.primitive.MutableShortStackFactoryImpl
-
- All Implemented Interfaces:
MutableShortStackFactory
public class MutableShortStackFactoryImpl extends java.lang.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()Same asMutableShortStackFactory.empty().MutableShortStackof(short... items)MutableShortStackofAll(java.lang.Iterable<java.lang.Short> iterable)MutableShortStackofAll(ShortIterable items)MutableShortStackofAllReversed(ShortIterable items)MutableShortStackwith()Same asMutableShortStackFactory.empty().MutableShortStackwith(short... items)MutableShortStackwithAll(java.lang.Iterable<java.lang.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()
Description copied from interface:MutableShortStackFactorySame asMutableShortStackFactory.empty().- Specified by:
ofin interfaceMutableShortStackFactory
-
with
public MutableShortStack with()
Description copied from interface:MutableShortStackFactorySame asMutableShortStackFactory.empty().- Specified by:
within interfaceMutableShortStackFactory
-
of
public MutableShortStack of(short... items)
Description copied from interface:MutableShortStackFactory- Specified by:
ofin interfaceMutableShortStackFactory
-
with
public MutableShortStack with(short... items)
- Specified by:
within interfaceMutableShortStackFactory
-
ofAll
public MutableShortStack ofAll(ShortIterable items)
Description copied from interface:MutableShortStackFactory- Specified by:
ofAllin interfaceMutableShortStackFactory
-
withAll
public MutableShortStack withAll(ShortIterable items)
- Specified by:
withAllin interfaceMutableShortStackFactory
-
ofAll
public MutableShortStack ofAll(java.lang.Iterable<java.lang.Short> iterable)
Description copied from interface:MutableShortStackFactory- Specified by:
ofAllin interfaceMutableShortStackFactory- Since:
- 10.0
-
withAll
public MutableShortStack withAll(java.lang.Iterable<java.lang.Short> iterable)
- Specified by:
withAllin interfaceMutableShortStackFactory- Since:
- 10.0
-
ofAllReversed
public MutableShortStack ofAllReversed(ShortIterable items)
Description copied from interface:MutableShortStackFactory- Specified by:
ofAllReversedin interfaceMutableShortStackFactory
-
withAllReversed
public MutableShortStack withAllReversed(ShortIterable items)
- Specified by:
withAllReversedin interfaceMutableShortStackFactory
-
-