Interface MutableByteSetFactory
-
public interface MutableByteSetFactoryA 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 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 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(Iterable<Byte> iterable)
Same aswithAll(Iterable).
-
withAll
MutableByteSet withAll(Iterable<Byte> iterable)
-
-