Interface MutableShortBagFactory
-
public interface MutableShortBagFactoryA 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 MutableShortBagempty()MutableShortBagof()Same asempty().MutableShortBagof(short... items)Same aswith(short[]).MutableShortBagofAll(Iterable<Short> iterable)Same aswithAll(Iterable).MutableShortBagofAll(ShortIterable items)Same aswithAll(ShortIterable).MutableShortBagwith()Same asempty().MutableShortBagwith(short... items)MutableShortBagwithAll(Iterable<Short> iterable)MutableShortBagwithAll(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(Iterable<Short> iterable)
Same aswithAll(Iterable).
-
withAll
MutableShortBag withAll(Iterable<Short> iterable)
-
-