Interface ImmutableByteBagFactory
- All Known Implementing Classes:
ImmutableByteBagFactoryImpl
public interface ImmutableByteBagFactory
A factory which creates instances of type
ImmutableByteBag
.
This file was automatically generated from template file immutablePrimitiveBagFactory.stg.- Since:
- 4.0.
-
Method Summary
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(Iterable<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(Iterable<Byte> iterable)
ImmutableByteBag
withAll(ByteIterable items)
-
Method Details
-
empty
ImmutableByteBag empty()- Since:
- 6.0
-
of
ImmutableByteBag of()Same asempty()
. -
with
ImmutableByteBag with()Same asempty()
. -
of
Same aswith(byte)
. -
with
-
of
Same aswith(byte[])
. -
with
-
ofAll
Same aswithAll(ByteIterable)
. -
withAll
-
ofAll
Same aswithAll(Iterable)
. -
withAll
-