Class MutableByteBagFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bag.mutable.primitive.MutableByteBagFactoryImpl
-
- All Implemented Interfaces:
MutableByteBagFactory
public class MutableByteBagFactoryImpl extends 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()MutableByteBagof(byte... items)MutableByteBagofAll(Iterable<Byte> iterable)MutableByteBagofAll(ByteIterable items)MutableByteBagwith()MutableByteBagwith(byte... items)MutableByteBagwithAll(Iterable<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()
- Specified by:
ofin interfaceMutableByteBagFactory
-
with
public MutableByteBag with()
- Specified by:
within interfaceMutableByteBagFactory
-
of
public MutableByteBag of(byte... items)
- Specified by:
ofin interfaceMutableByteBagFactory
-
with
public MutableByteBag with(byte... items)
- Specified by:
within interfaceMutableByteBagFactory
-
ofAll
public MutableByteBag ofAll(ByteIterable items)
- Specified by:
ofAllin interfaceMutableByteBagFactory
-
withAll
public MutableByteBag withAll(ByteIterable items)
- Specified by:
withAllin interfaceMutableByteBagFactory
-
ofAll
public MutableByteBag ofAll(Iterable<Byte> iterable)
- Specified by:
ofAllin interfaceMutableByteBagFactory- Since:
- 10.0
-
withAll
public MutableByteBag withAll(Iterable<Byte> iterable)
- Specified by:
withAllin interfaceMutableByteBagFactory- Since:
- 10.0
-
-