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