Interface MutableByteBagFactory
-
public interface MutableByteBagFactoryA 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 MutableByteBagempty()MutableByteBagof()Same asempty().MutableByteBagof(byte... items)Same aswith(byte[]).MutableByteBagofAll(Iterable<Byte> iterable)Same aswithAll(Iterable).MutableByteBagofAll(ByteIterable items)Same aswithAll(ByteIterable).MutableByteBagwith()Same asempty().MutableByteBagwith(byte... items)MutableByteBagwithAll(Iterable<Byte> iterable)MutableByteBagwithAll(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(Iterable<Byte> iterable)
Same aswithAll(Iterable).
-
withAll
MutableByteBag withAll(Iterable<Byte> iterable)
-
-