Interface ImmutableByteSetFactory
-
public interface ImmutableByteSetFactoryA factory which creates instances of typeImmutableByteSet. This file was automatically generated from template file immutablePrimitiveSetFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableByteSetempty()ImmutableByteSetof()Same asempty().ImmutableByteSetof(byte one)Same aswith(byte).ImmutableByteSetof(byte... items)Same aswith(byte[]).ImmutableByteSetofAll(Iterable<Byte> iterable)Same aswithAll(Iterable).ImmutableByteSetofAll(ByteIterable items)Same aswithAll(ByteIterable).ImmutableByteSetwith()Same asempty().ImmutableByteSetwith(byte one)ImmutableByteSetwith(byte... items)ImmutableByteSetwithAll(Iterable<Byte> iterable)ImmutableByteSetwithAll(ByteIterable items)
-
-
-
Method Detail
-
empty
ImmutableByteSet empty()
- Since:
- 6.0
-
of
ImmutableByteSet of()
Same asempty().
-
with
ImmutableByteSet with()
Same asempty().
-
of
ImmutableByteSet of(byte one)
Same aswith(byte).
-
with
ImmutableByteSet with(byte one)
-
of
ImmutableByteSet of(byte... items)
Same aswith(byte[]).
-
with
ImmutableByteSet with(byte... items)
-
ofAll
ImmutableByteSet ofAll(ByteIterable items)
Same aswithAll(ByteIterable).
-
withAll
ImmutableByteSet withAll(ByteIterable items)
-
ofAll
ImmutableByteSet ofAll(Iterable<Byte> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableByteSet withAll(Iterable<Byte> iterable)
-
-