Class MutableByteSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.mutable.primitive.MutableByteSetFactoryImpl
-
- All Implemented Interfaces:
MutableByteSetFactory
public class MutableByteSetFactoryImpl extends java.lang.Object implements MutableByteSetFactory
MutableByteSetFactoryImpl is a factory implementation which creates instances of typeMutableByteSet
. This file was automatically generated from template file mutablePrimitiveSetFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableByteSetFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description MutableByteSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableByteSet
empty()
MutableByteSet
of()
Same asMutableByteSetFactory.empty()
.MutableByteSet
of(byte... items)
Same asMutableByteSetFactory.with(byte[])
.MutableByteSet
ofAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteSet
ofAll(ByteIterable items)
MutableByteSet
with()
Same asMutableByteSetFactory.empty()
.MutableByteSet
with(byte... items)
MutableByteSet
withAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteSet
withAll(ByteIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableByteSetFactory INSTANCE
-
-
Method Detail
-
empty
public MutableByteSet empty()
- Specified by:
empty
in interfaceMutableByteSetFactory
-
of
public MutableByteSet of()
Description copied from interface:MutableByteSetFactory
Same asMutableByteSetFactory.empty()
.- Specified by:
of
in interfaceMutableByteSetFactory
-
with
public MutableByteSet with()
Description copied from interface:MutableByteSetFactory
Same asMutableByteSetFactory.empty()
.- Specified by:
with
in interfaceMutableByteSetFactory
-
of
public MutableByteSet of(byte... items)
Description copied from interface:MutableByteSetFactory
Same asMutableByteSetFactory.with(byte[])
.- Specified by:
of
in interfaceMutableByteSetFactory
-
with
public MutableByteSet with(byte... items)
- Specified by:
with
in interfaceMutableByteSetFactory
-
ofAll
public MutableByteSet ofAll(ByteIterable items)
Description copied from interface:MutableByteSetFactory
- Specified by:
ofAll
in interfaceMutableByteSetFactory
-
withAll
public MutableByteSet withAll(ByteIterable items)
- Specified by:
withAll
in interfaceMutableByteSetFactory
-
ofAll
public MutableByteSet ofAll(java.lang.Iterable<java.lang.Byte> iterable)
Description copied from interface:MutableByteSetFactory
- Specified by:
ofAll
in interfaceMutableByteSetFactory
- Since:
- 10.0
-
withAll
public MutableByteSet withAll(java.lang.Iterable<java.lang.Byte> iterable)
- Specified by:
withAll
in interfaceMutableByteSetFactory
- Since:
- 10.0
-
-