Class MutableByteSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.mutable.primitive.MutableByteSetFactoryImpl
-
- All Implemented Interfaces:
MutableByteSetFactory
public class MutableByteSetFactoryImpl extends 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 MutableByteSetFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableByteSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableByteSetempty()MutableByteSetof()MutableByteSetof(byte... items)MutableByteSetofAll(Iterable<Byte> iterable)MutableByteSetofAll(ByteIterable items)MutableByteSetwith()MutableByteSetwith(byte... items)MutableByteSetwithAll(Iterable<Byte> iterable)MutableByteSetwithAll(ByteIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableByteSetFactory INSTANCE
-
-
Method Detail
-
empty
public MutableByteSet empty()
- Specified by:
emptyin interfaceMutableByteSetFactory
-
of
public MutableByteSet of()
- Specified by:
ofin interfaceMutableByteSetFactory
-
with
public MutableByteSet with()
- Specified by:
within interfaceMutableByteSetFactory
-
of
public MutableByteSet of(byte... items)
- Specified by:
ofin interfaceMutableByteSetFactory
-
with
public MutableByteSet with(byte... items)
- Specified by:
within interfaceMutableByteSetFactory
-
ofAll
public MutableByteSet ofAll(ByteIterable items)
- Specified by:
ofAllin interfaceMutableByteSetFactory
-
withAll
public MutableByteSet withAll(ByteIterable items)
- Specified by:
withAllin interfaceMutableByteSetFactory
-
ofAll
public MutableByteSet ofAll(Iterable<Byte> iterable)
- Specified by:
ofAllin interfaceMutableByteSetFactory- Since:
- 10.0
-
withAll
public MutableByteSet withAll(Iterable<Byte> iterable)
- Specified by:
withAllin interfaceMutableByteSetFactory- Since:
- 10.0
-
-