Class MutableByteStackFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.stack.mutable.primitive.MutableByteStackFactoryImpl
-
- All Implemented Interfaces:
MutableByteStackFactory
public class MutableByteStackFactoryImpl extends java.lang.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 MutableByteStackFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description MutableByteStackFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableByteStack
empty()
MutableByteStack
of()
Same asMutableByteStackFactory.empty()
.MutableByteStack
of(byte... items)
Same asMutableByteStackFactory.with(byte[])
.MutableByteStack
ofAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteStack
ofAll(ByteIterable items)
MutableByteStack
ofAllReversed(ByteIterable items)
MutableByteStack
with()
Same asMutableByteStackFactory.empty()
.MutableByteStack
with(byte... items)
MutableByteStack
withAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteStack
withAll(ByteIterable items)
MutableByteStack
withAllReversed(ByteIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableByteStackFactory INSTANCE
-
-
Method Detail
-
empty
public MutableByteStack empty()
- Specified by:
empty
in interfaceMutableByteStackFactory
-
of
public MutableByteStack of()
Description copied from interface:MutableByteStackFactory
Same asMutableByteStackFactory.empty()
.- Specified by:
of
in interfaceMutableByteStackFactory
-
with
public MutableByteStack with()
Description copied from interface:MutableByteStackFactory
Same asMutableByteStackFactory.empty()
.- Specified by:
with
in interfaceMutableByteStackFactory
-
of
public MutableByteStack of(byte... items)
Description copied from interface:MutableByteStackFactory
Same asMutableByteStackFactory.with(byte[])
.- Specified by:
of
in interfaceMutableByteStackFactory
-
with
public MutableByteStack with(byte... items)
- Specified by:
with
in interfaceMutableByteStackFactory
-
ofAll
public MutableByteStack ofAll(ByteIterable items)
Description copied from interface:MutableByteStackFactory
- Specified by:
ofAll
in interfaceMutableByteStackFactory
-
withAll
public MutableByteStack withAll(ByteIterable items)
- Specified by:
withAll
in interfaceMutableByteStackFactory
-
ofAll
public MutableByteStack ofAll(java.lang.Iterable<java.lang.Byte> iterable)
Description copied from interface:MutableByteStackFactory
- Specified by:
ofAll
in interfaceMutableByteStackFactory
- Since:
- 10.0
-
withAll
public MutableByteStack withAll(java.lang.Iterable<java.lang.Byte> iterable)
- Specified by:
withAll
in interfaceMutableByteStackFactory
- Since:
- 10.0
-
ofAllReversed
public MutableByteStack ofAllReversed(ByteIterable items)
Description copied from interface:MutableByteStackFactory
- Specified by:
ofAllReversed
in interfaceMutableByteStackFactory
-
withAllReversed
public MutableByteStack withAllReversed(ByteIterable items)
- Specified by:
withAllReversed
in interfaceMutableByteStackFactory
-
-