Class MutableShortBagFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bag.mutable.primitive.MutableShortBagFactoryImpl
-
- All Implemented Interfaces:
MutableShortBagFactory
public class MutableShortBagFactoryImpl extends java.lang.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 MutableShortBagFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description MutableShortBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableShortBag
empty()
MutableShortBag
of()
Same asMutableShortBagFactory.empty()
.MutableShortBag
of(short... items)
Same asMutableShortBagFactory.with(short[])
.MutableShortBag
ofAll(java.lang.Iterable<java.lang.Short> iterable)
MutableShortBag
ofAll(ShortIterable items)
MutableShortBag
with()
Same asMutableShortBagFactory.empty()
.MutableShortBag
with(short... items)
MutableShortBag
withAll(java.lang.Iterable<java.lang.Short> iterable)
MutableShortBag
withAll(ShortIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableShortBagFactory INSTANCE
-
-
Method Detail
-
empty
public MutableShortBag empty()
- Specified by:
empty
in interfaceMutableShortBagFactory
-
of
public MutableShortBag of()
Description copied from interface:MutableShortBagFactory
Same asMutableShortBagFactory.empty()
.- Specified by:
of
in interfaceMutableShortBagFactory
-
with
public MutableShortBag with()
Description copied from interface:MutableShortBagFactory
Same asMutableShortBagFactory.empty()
.- Specified by:
with
in interfaceMutableShortBagFactory
-
of
public MutableShortBag of(short... items)
Description copied from interface:MutableShortBagFactory
Same asMutableShortBagFactory.with(short[])
.- Specified by:
of
in interfaceMutableShortBagFactory
-
with
public MutableShortBag with(short... items)
- Specified by:
with
in interfaceMutableShortBagFactory
-
ofAll
public MutableShortBag ofAll(ShortIterable items)
Description copied from interface:MutableShortBagFactory
- Specified by:
ofAll
in interfaceMutableShortBagFactory
-
withAll
public MutableShortBag withAll(ShortIterable items)
- Specified by:
withAll
in interfaceMutableShortBagFactory
-
ofAll
public MutableShortBag ofAll(java.lang.Iterable<java.lang.Short> iterable)
Description copied from interface:MutableShortBagFactory
- Specified by:
ofAll
in interfaceMutableShortBagFactory
- Since:
- 10.0
-
withAll
public MutableShortBag withAll(java.lang.Iterable<java.lang.Short> iterable)
- Specified by:
withAll
in interfaceMutableShortBagFactory
- Since:
- 10.0
-
-