Class MutableByteStackFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.stack.mutable.primitive.MutableByteStackFactoryImpl
-
- All Implemented Interfaces:
MutableByteStackFactory
public class MutableByteStackFactoryImpl extends Object implements MutableByteStackFactory
MutableByteStackFactoryImpl is a factory implementation which creates instances of typeMutableByteStack. This file was automatically generated from template file mutablePrimitiveStackFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableByteStackFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableByteStackFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableByteStackempty()MutableByteStackof()MutableByteStackof(byte... items)MutableByteStackofAll(Iterable<Byte> iterable)MutableByteStackofAll(ByteIterable items)MutableByteStackofAllReversed(ByteIterable items)MutableByteStackwith()MutableByteStackwith(byte... items)MutableByteStackwithAll(Iterable<Byte> iterable)MutableByteStackwithAll(ByteIterable items)MutableByteStackwithAllReversed(ByteIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableByteStackFactory INSTANCE
-
-
Method Detail
-
empty
public MutableByteStack empty()
- Specified by:
emptyin interfaceMutableByteStackFactory
-
of
public MutableByteStack of()
- Specified by:
ofin interfaceMutableByteStackFactory
-
with
public MutableByteStack with()
- Specified by:
within interfaceMutableByteStackFactory
-
of
public MutableByteStack of(byte... items)
- Specified by:
ofin interfaceMutableByteStackFactory
-
with
public MutableByteStack with(byte... items)
- Specified by:
within interfaceMutableByteStackFactory
-
ofAll
public MutableByteStack ofAll(ByteIterable items)
- Specified by:
ofAllin interfaceMutableByteStackFactory
-
withAll
public MutableByteStack withAll(ByteIterable items)
- Specified by:
withAllin interfaceMutableByteStackFactory
-
ofAll
public MutableByteStack ofAll(Iterable<Byte> iterable)
- Specified by:
ofAllin interfaceMutableByteStackFactory- Since:
- 10.0
-
withAll
public MutableByteStack withAll(Iterable<Byte> iterable)
- Specified by:
withAllin interfaceMutableByteStackFactory- Since:
- 10.0
-
ofAllReversed
public MutableByteStack ofAllReversed(ByteIterable items)
- Specified by:
ofAllReversedin interfaceMutableByteStackFactory
-
withAllReversed
public MutableByteStack withAllReversed(ByteIterable items)
- Specified by:
withAllReversedin interfaceMutableByteStackFactory
-
-