Interface ImmutableByteListFactory
-
- All Known Implementing Classes:
ImmutableByteListFactoryImpl
public interface ImmutableByteListFactory
A factory which creates instances of typeImmutableByteList
. This file was automatically generated from template file immutablePrimitiveListFactory.stg.- Since:
- 3.2.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableByteList
empty()
ImmutableByteList
of()
Same asempty()
.ImmutableByteList
of(byte one)
Same aswith(byte)
.ImmutableByteList
of(byte... items)
Same aswith(byte[])
.ImmutableByteList
ofAll(java.lang.Iterable<java.lang.Byte> iterable)
Same aswithAll(Iterable)
.ImmutableByteList
ofAll(ByteIterable items)
Same aswithAll(ByteIterable)
.ImmutableByteList
with()
Same asempty()
.ImmutableByteList
with(byte one)
ImmutableByteList
with(byte... items)
ImmutableByteList
withAll(java.lang.Iterable<java.lang.Byte> iterable)
ImmutableByteList
withAll(ByteIterable items)
-
-
-
Method Detail
-
empty
ImmutableByteList empty()
- Since:
- 6.0
-
of
ImmutableByteList of()
Same asempty()
.
-
with
ImmutableByteList with()
Same asempty()
.
-
of
ImmutableByteList of(byte one)
Same aswith(byte)
.
-
with
ImmutableByteList with(byte one)
-
of
ImmutableByteList of(byte... items)
Same aswith(byte[])
.
-
with
ImmutableByteList with(byte... items)
-
ofAll
ImmutableByteList ofAll(ByteIterable items)
Same aswithAll(ByteIterable)
.
-
withAll
ImmutableByteList withAll(ByteIterable items)
-
ofAll
ImmutableByteList ofAll(java.lang.Iterable<java.lang.Byte> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableByteList withAll(java.lang.Iterable<java.lang.Byte> iterable)
-
-