Interface ImmutableByteBagFactory
-
public interface ImmutableByteBagFactoryA 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 ImmutableByteBagempty()ImmutableByteBagof()Same asempty().ImmutableByteBagof(byte one)Same aswith(byte).ImmutableByteBagof(byte... items)Same aswith(byte[]).ImmutableByteBagofAll(Iterable<Byte> iterable)Same aswithAll(Iterable).ImmutableByteBagofAll(ByteIterable items)Same aswithAll(ByteIterable).ImmutableByteBagwith()Same asempty().ImmutableByteBagwith(byte one)ImmutableByteBagwith(byte... items)ImmutableByteBagwithAll(Iterable<Byte> iterable)ImmutableByteBagwithAll(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(Iterable<Byte> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableByteBag withAll(Iterable<Byte> iterable)
-
-