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 SummaryModifier 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- 
emptyMutableByteSet empty()
- 
ofMutableByteSet of()Same asempty().
- 
withMutableByteSet with()Same asempty().
- 
ofSame aswith(byte[]).
- 
with
- 
ofAllSame aswithAll(ByteIterable).
- 
withAll
- 
ofAllSame aswithAll(Iterable).
- 
withAll
 
-