Interface ImmutableByteStackFactory
-
public interface ImmutableByteStackFactoryA 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 ImmutableByteStackempty()ImmutableByteStackof()Same asempty().ImmutableByteStackof(byte one)Same aswith(byte).ImmutableByteStackof(byte... items)Same aswith(byte[]).ImmutableByteStackofAll(Iterable<Byte> iterable)Same aswithAll(Iterable).ImmutableByteStackofAll(ByteIterable items)Same aswithAll(ByteIterable).ImmutableByteStackofAllReversed(ByteIterable items)Same aswithAllReversed(ByteIterable).ImmutableByteStackwith()Same asempty().ImmutableByteStackwith(byte one)ImmutableByteStackwith(byte... items)ImmutableByteStackwithAll(Iterable<Byte> iterable)ImmutableByteStackwithAll(ByteIterable items)ImmutableByteStackwithAllReversed(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(Iterable<Byte> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableByteStack withAll(Iterable<Byte> iterable)
-
ofAllReversed
ImmutableByteStack ofAllReversed(ByteIterable items)
Same aswithAllReversed(ByteIterable).
-
withAllReversed
ImmutableByteStack withAllReversed(ByteIterable items)
-
-