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