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 MutableByteSetFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableByteSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableByteSetempty()MutableByteSetof()Same asMutableByteSetFactory.empty().MutableByteSetof(byte... items)Same asMutableByteSetFactory.with(byte[]).MutableByteSetofAll(java.lang.Iterable<java.lang.Byte> iterable)MutableByteSetofAll(ByteIterable items)MutableByteSetwith()Same asMutableByteSetFactory.empty().MutableByteSetwith(byte... items)MutableByteSetwithAll(java.lang.Iterable<java.lang.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()
Description copied from interface:MutableByteSetFactorySame asMutableByteSetFactory.empty().- Specified by:
ofin interfaceMutableByteSetFactory
-
with
public MutableByteSet with()
Description copied from interface:MutableByteSetFactorySame asMutableByteSetFactory.empty().- Specified by:
within interfaceMutableByteSetFactory
-
of
public MutableByteSet of(byte... items)
Description copied from interface:MutableByteSetFactorySame asMutableByteSetFactory.with(byte[]).- Specified by:
ofin interfaceMutableByteSetFactory
-
with
public MutableByteSet with(byte... items)
- Specified by:
within interfaceMutableByteSetFactory
-
ofAll
public MutableByteSet ofAll(ByteIterable items)
Description copied from interface:MutableByteSetFactory- Specified by:
ofAllin interfaceMutableByteSetFactory
-
withAll
public MutableByteSet withAll(ByteIterable items)
- Specified by:
withAllin interfaceMutableByteSetFactory
-
ofAll
public MutableByteSet ofAll(java.lang.Iterable<java.lang.Byte> iterable)
Description copied from interface:MutableByteSetFactory- Specified by:
ofAllin interfaceMutableByteSetFactory- Since:
- 10.0
-
withAll
public MutableByteSet withAll(java.lang.Iterable<java.lang.Byte> iterable)
- Specified by:
withAllin interfaceMutableByteSetFactory- Since:
- 10.0
-
-