Interface MutableShortBagFactory
-
- All Known Implementing Classes:
MutableShortBagFactoryImpl
public interface MutableShortBagFactory
A factory which creates instances of typeMutableShortBag
. This file was automatically generated from template file mutablePrimitiveBagFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MutableShortBag
empty()
MutableShortBag
of()
Same asempty()
.MutableShortBag
of(short... items)
Same aswith(short[])
.MutableShortBag
ofAll(java.lang.Iterable<java.lang.Short> iterable)
Same aswithAll(Iterable)
.MutableShortBag
ofAll(ShortIterable items)
Same aswithAll(ShortIterable)
.MutableShortBag
with()
Same asempty()
.MutableShortBag
with(short... items)
MutableShortBag
withAll(java.lang.Iterable<java.lang.Short> iterable)
MutableShortBag
withAll(ShortIterable items)
-
-
-
Method Detail
-
empty
MutableShortBag empty()
-
of
MutableShortBag of()
Same asempty()
.
-
with
MutableShortBag with()
Same asempty()
.
-
of
MutableShortBag of(short... items)
Same aswith(short[])
.
-
with
MutableShortBag with(short... items)
-
ofAll
MutableShortBag ofAll(ShortIterable items)
Same aswithAll(ShortIterable)
.
-
withAll
MutableShortBag withAll(ShortIterable items)
-
ofAll
MutableShortBag ofAll(java.lang.Iterable<java.lang.Short> iterable)
Same aswithAll(Iterable)
.
-
withAll
MutableShortBag withAll(java.lang.Iterable<java.lang.Short> iterable)
-
-