Interface ImmutableByteListFactory
-
public interface ImmutableByteListFactoryA 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 ImmutableByteListempty()ImmutableByteListof()Same asempty().ImmutableByteListof(byte one)Same aswith(byte).ImmutableByteListof(byte... items)Same aswith(byte[]).ImmutableByteListofAll(Iterable<Byte> iterable)Same aswithAll(Iterable).ImmutableByteListofAll(ByteIterable items)Same aswithAll(ByteIterable).ImmutableByteListwith()Same asempty().ImmutableByteListwith(byte one)ImmutableByteListwith(byte... items)ImmutableByteListwithAll(Iterable<Byte> iterable)ImmutableByteListwithAll(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(Iterable<Byte> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableByteList withAll(Iterable<Byte> iterable)
-
-