Interface MutableIntBagFactory
- All Known Implementing Classes:
MutableIntBagFactoryImpl
public interface MutableIntBagFactory
A factory which creates instances of type
MutableIntBag.
This file was automatically generated from template file mutablePrimitiveBagFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableIntBagempty()MutableIntBagof()Same asempty().MutableIntBagof(int... items)Same aswith(int[]).MutableIntBagofAll(Iterable<Integer> iterable)Same aswithAll(Iterable).MutableIntBagofAll(IntStream items)MutableIntBagofAll(IntIterable items)Same aswithAll(IntIterable).MutableIntBagwith()Same asempty().MutableIntBagwith(int... items)MutableIntBagwithAll(Iterable<Integer> iterable)MutableIntBagwithAll(IntStream items)MutableIntBagwithAll(IntIterable items)
-
Method Details
-
empty
MutableIntBag empty() -
of
MutableIntBag of()Same asempty(). -
with
MutableIntBag with()Same asempty(). -
of
Same aswith(int[]). -
with
-
ofAll
Same aswithAll(IntIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-