Class MutableByteBagFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bag.mutable.primitive.MutableByteBagFactoryImpl
-
- All Implemented Interfaces:
MutableByteBagFactory
public class MutableByteBagFactoryImpl extends java.lang.Object implements MutableByteBagFactory
MutableByteBagFactoryImpl is a factory implementation which creates instances of typeMutableByteBag. This file was automatically generated from template file mutablePrimitiveBagFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableByteBagFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableByteBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableByteBagempty()MutableByteBagof()Same asMutableByteBagFactory.empty().MutableByteBagof(byte... items)Same asMutableByteBagFactory.with(byte[]).MutableByteBagofAll(java.lang.Iterable<java.lang.Byte> iterable)MutableByteBagofAll(ByteIterable items)MutableByteBagwith()Same asMutableByteBagFactory.empty().MutableByteBagwith(byte... items)MutableByteBagwithAll(java.lang.Iterable<java.lang.Byte> iterable)MutableByteBagwithAll(ByteIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableByteBagFactory INSTANCE
-
-
Method Detail
-
empty
public MutableByteBag empty()
- Specified by:
emptyin interfaceMutableByteBagFactory
-
of
public MutableByteBag of()
Description copied from interface:MutableByteBagFactorySame asMutableByteBagFactory.empty().- Specified by:
ofin interfaceMutableByteBagFactory
-
with
public MutableByteBag with()
Description copied from interface:MutableByteBagFactorySame asMutableByteBagFactory.empty().- Specified by:
within interfaceMutableByteBagFactory
-
of
public MutableByteBag of(byte... items)
Description copied from interface:MutableByteBagFactorySame asMutableByteBagFactory.with(byte[]).- Specified by:
ofin interfaceMutableByteBagFactory
-
with
public MutableByteBag with(byte... items)
- Specified by:
within interfaceMutableByteBagFactory
-
ofAll
public MutableByteBag ofAll(ByteIterable items)
Description copied from interface:MutableByteBagFactory- Specified by:
ofAllin interfaceMutableByteBagFactory
-
withAll
public MutableByteBag withAll(ByteIterable items)
- Specified by:
withAllin interfaceMutableByteBagFactory
-
ofAll
public MutableByteBag ofAll(java.lang.Iterable<java.lang.Byte> iterable)
Description copied from interface:MutableByteBagFactory- Specified by:
ofAllin interfaceMutableByteBagFactory- Since:
- 10.0
-
withAll
public MutableByteBag withAll(java.lang.Iterable<java.lang.Byte> iterable)
- Specified by:
withAllin interfaceMutableByteBagFactory- Since:
- 10.0
-
-