Interface MutableIntBagFactory
-
public interface MutableIntBagFactoryA factory which creates instances of typeMutableIntBag. 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 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 Detail
-
empty
MutableIntBag empty()
-
of
MutableIntBag of()
Same asempty().
-
with
MutableIntBag with()
Same asempty().
-
of
MutableIntBag of(int... items)
Same aswith(int[]).
-
with
MutableIntBag with(int... items)
-
ofAll
MutableIntBag ofAll(IntIterable items)
Same aswithAll(IntIterable).
-
withAll
MutableIntBag withAll(IntIterable items)
-
ofAll
MutableIntBag ofAll(Iterable<Integer> iterable)
Same aswithAll(Iterable).
-
withAll
MutableIntBag withAll(Iterable<Integer> iterable)
-
ofAll
MutableIntBag ofAll(IntStream items)
- Since:
- 9.0
-
withAll
MutableIntBag withAll(IntStream items)
- Since:
- 9.0
-
-