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