Class MutableShortBagFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bag.mutable.primitive.MutableShortBagFactoryImpl
-
- All Implemented Interfaces:
MutableShortBagFactory
public class MutableShortBagFactoryImpl extends Object implements MutableShortBagFactory
MutableShortBagFactoryImpl is a factory implementation which creates instances of typeMutableShortBag. This file was automatically generated from template file mutablePrimitiveBagFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableShortBagFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableShortBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableShortBagempty()MutableShortBagof()MutableShortBagof(short... items)MutableShortBagofAll(Iterable<Short> iterable)MutableShortBagofAll(ShortIterable items)MutableShortBagwith()MutableShortBagwith(short... items)MutableShortBagwithAll(Iterable<Short> iterable)MutableShortBagwithAll(ShortIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableShortBagFactory INSTANCE
-
-
Method Detail
-
empty
public MutableShortBag empty()
- Specified by:
emptyin interfaceMutableShortBagFactory
-
of
public MutableShortBag of()
- Specified by:
ofin interfaceMutableShortBagFactory
-
with
public MutableShortBag with()
- Specified by:
within interfaceMutableShortBagFactory
-
of
public MutableShortBag of(short... items)
- Specified by:
ofin interfaceMutableShortBagFactory
-
with
public MutableShortBag with(short... items)
- Specified by:
within interfaceMutableShortBagFactory
-
ofAll
public MutableShortBag ofAll(ShortIterable items)
- Specified by:
ofAllin interfaceMutableShortBagFactory
-
withAll
public MutableShortBag withAll(ShortIterable items)
- Specified by:
withAllin interfaceMutableShortBagFactory
-
ofAll
public MutableShortBag ofAll(Iterable<Short> iterable)
- Specified by:
ofAllin interfaceMutableShortBagFactory- Since:
- 10.0
-
withAll
public MutableShortBag withAll(Iterable<Short> iterable)
- Specified by:
withAllin interfaceMutableShortBagFactory- Since:
- 10.0
-
-