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 MutableByteSetempty()MutableByteSetof()Same asempty().MutableByteSetof(byte... items)Same aswith(byte[]).MutableByteSetofAll(Iterable<Byte> iterable)Same aswithAll(Iterable).MutableByteSetofAll(ByteIterable items)Same aswithAll(ByteIterable).MutableByteSetwith()Same asempty().MutableByteSetwith(byte... items)MutableByteSetwithAll(Iterable<Byte> iterable)MutableByteSetwithAll(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
-