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 MutableByteBagFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description MutableByteBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableByteBag
empty()
MutableByteBag
of()
Same asMutableByteBagFactory.empty()
.MutableByteBag
of(byte... items)
Same asMutableByteBagFactory.with(byte[])
.MutableByteBag
ofAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteBag
ofAll(ByteIterable items)
MutableByteBag
with()
Same asMutableByteBagFactory.empty()
.MutableByteBag
with(byte... items)
MutableByteBag
withAll(java.lang.Iterable<java.lang.Byte> iterable)
MutableByteBag
withAll(ByteIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableByteBagFactory INSTANCE
-
-
Method Detail
-
empty
public MutableByteBag empty()
- Specified by:
empty
in interfaceMutableByteBagFactory
-
of
public MutableByteBag of()
Description copied from interface:MutableByteBagFactory
Same asMutableByteBagFactory.empty()
.- Specified by:
of
in interfaceMutableByteBagFactory
-
with
public MutableByteBag with()
Description copied from interface:MutableByteBagFactory
Same asMutableByteBagFactory.empty()
.- Specified by:
with
in interfaceMutableByteBagFactory
-
of
public MutableByteBag of(byte... items)
Description copied from interface:MutableByteBagFactory
Same asMutableByteBagFactory.with(byte[])
.- Specified by:
of
in interfaceMutableByteBagFactory
-
with
public MutableByteBag with(byte... items)
- Specified by:
with
in interfaceMutableByteBagFactory
-
ofAll
public MutableByteBag ofAll(ByteIterable items)
Description copied from interface:MutableByteBagFactory
- Specified by:
ofAll
in interfaceMutableByteBagFactory
-
withAll
public MutableByteBag withAll(ByteIterable items)
- Specified by:
withAll
in interfaceMutableByteBagFactory
-
ofAll
public MutableByteBag ofAll(java.lang.Iterable<java.lang.Byte> iterable)
Description copied from interface:MutableByteBagFactory
- Specified by:
ofAll
in interfaceMutableByteBagFactory
- Since:
- 10.0
-
withAll
public MutableByteBag withAll(java.lang.Iterable<java.lang.Byte> iterable)
- Specified by:
withAll
in interfaceMutableByteBagFactory
- Since:
- 10.0
-
-