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