Interface MutableByteStackFactory
-
public interface MutableByteStackFactoryA 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 MutableByteStackempty()MutableByteStackof()Same asempty().MutableByteStackof(byte... items)Same aswith(byte[]).MutableByteStackofAll(Iterable<Byte> iterable)Same aswithAll(Iterable).MutableByteStackofAll(ByteIterable items)Same aswithAll(ByteIterable).MutableByteStackofAllReversed(ByteIterable items)Same aswithAllReversed(ByteIterable).MutableByteStackwith()Same asempty().MutableByteStackwith(byte... items)MutableByteStackwithAll(Iterable<Byte> iterable)MutableByteStackwithAll(ByteIterable items)MutableByteStackwithAllReversed(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(Iterable<Byte> iterable)
Same aswithAll(Iterable).
-
withAll
MutableByteStack withAll(Iterable<Byte> iterable)
-
ofAllReversed
MutableByteStack ofAllReversed(ByteIterable items)
Same aswithAllReversed(ByteIterable).
-
withAllReversed
MutableByteStack withAllReversed(ByteIterable items)
-
-