Interface MutableByteSetFactory
- All Known Implementing Classes:
MutableByteSetFactoryImpl
public interface MutableByteSetFactory
A factory which creates instances of type
MutableByteSet
.
This file was automatically generated from template file mutablePrimitiveSetFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableByteSet
empty()
MutableByteSet
of()
Same asempty()
.MutableByteSet
of(byte... items)
Same aswith(byte[])
.MutableByteSet
ofAll(Iterable<Byte> iterable)
Same aswithAll(Iterable)
.MutableByteSet
ofAll(ByteIterable items)
Same aswithAll(ByteIterable)
.MutableByteSet
with()
Same asempty()
.MutableByteSet
with(byte... items)
MutableByteSet
withAll(Iterable<Byte> iterable)
MutableByteSet
withAll(ByteIterable items)
-
Method Details
-
empty
MutableByteSet empty() -
of
MutableByteSet of()Same asempty()
. -
with
MutableByteSet with()Same asempty()
. -
of
Same aswith(byte[])
. -
with
-
ofAll
Same aswithAll(ByteIterable)
. -
withAll
-
ofAll
Same aswithAll(Iterable)
. -
withAll
-