Interface MutableByteStackFactory
-
- All Known Implementing Classes:
MutableByteStackFactoryImpl
public interface MutableByteStackFactory
A factory which creates instances of typeMutableByteStack
. This file was automatically generated from template file mutablePrimitiveStackFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MutableByteStack
empty()
MutableByteStack
of()
Same asempty()
.MutableByteStack
of(byte... items)
Same aswith(byte[])
.MutableByteStack
ofAll(java.lang.Iterable<java.lang.Byte> iterable)
Same aswithAll(Iterable)
.MutableByteStack
ofAll(ByteIterable items)
Same aswithAll(ByteIterable)
.MutableByteStack
ofAllReversed(ByteIterable items)
Same aswithAllReversed(ByteIterable)
.MutableByteStack
with()
Same asempty()
.MutableByteStack
with(byte... items)
MutableByteStack
withAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteStack
withAll(ByteIterable items)
MutableByteStack
withAllReversed(ByteIterable items)
-
-
-
Method Detail
-
empty
MutableByteStack empty()
-
of
MutableByteStack of()
Same asempty()
.
-
with
MutableByteStack with()
Same asempty()
.
-
of
MutableByteStack of(byte... items)
Same aswith(byte[])
.
-
with
MutableByteStack with(byte... items)
-
ofAll
MutableByteStack ofAll(ByteIterable items)
Same aswithAll(ByteIterable)
.
-
withAll
MutableByteStack withAll(ByteIterable items)
-
ofAll
MutableByteStack ofAll(java.lang.Iterable<java.lang.Byte> iterable)
Same aswithAll(Iterable)
.
-
withAll
MutableByteStack withAll(java.lang.Iterable<java.lang.Byte> iterable)
-
ofAllReversed
MutableByteStack ofAllReversed(ByteIterable items)
Same aswithAllReversed(ByteIterable)
.
-
withAllReversed
MutableByteStack withAllReversed(ByteIterable items)
-
-