Interface ImmutableByteSetFactory
-
- All Known Implementing Classes:
ImmutableByteSetFactoryImpl
public interface ImmutableByteSetFactory
A 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 ImmutableByteSet
empty()
ImmutableByteSet
of()
Same asempty()
.ImmutableByteSet
of(byte one)
Same aswith(byte)
.ImmutableByteSet
of(byte... items)
Same aswith(byte[])
.ImmutableByteSet
ofAll(java.lang.Iterable<java.lang.Byte> iterable)
Same aswithAll(Iterable)
.ImmutableByteSet
ofAll(ByteIterable items)
Same aswithAll(ByteIterable)
.ImmutableByteSet
with()
Same asempty()
.ImmutableByteSet
with(byte one)
ImmutableByteSet
with(byte... items)
ImmutableByteSet
withAll(java.lang.Iterable<java.lang.Byte> iterable)
ImmutableByteSet
withAll(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(java.lang.Iterable<java.lang.Byte> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableByteSet withAll(java.lang.Iterable<java.lang.Byte> iterable)
-
-