Interface MutableIntBagFactory
-
- All Known Implementing Classes:
MutableIntBagFactoryImpl
public interface MutableIntBagFactory
A 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 MutableIntBag
empty()
MutableIntBag
of()
Same asempty()
.MutableIntBag
of(int... items)
Same aswith(int[])
.MutableIntBag
ofAll(java.lang.Iterable<java.lang.Integer> iterable)
Same aswithAll(Iterable)
.MutableIntBag
ofAll(java.util.stream.IntStream items)
MutableIntBag
ofAll(IntIterable items)
Same aswithAll(IntIterable)
.MutableIntBag
with()
Same asempty()
.MutableIntBag
with(int... items)
MutableIntBag
withAll(java.lang.Iterable<java.lang.Integer> iterable)
MutableIntBag
withAll(java.util.stream.IntStream items)
MutableIntBag
withAll(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(java.lang.Iterable<java.lang.Integer> iterable)
Same aswithAll(Iterable)
.
-
withAll
MutableIntBag withAll(java.lang.Iterable<java.lang.Integer> iterable)
-
ofAll
MutableIntBag ofAll(java.util.stream.IntStream items)
- Since:
- 9.0
-
withAll
MutableIntBag withAll(java.util.stream.IntStream items)
- Since:
- 9.0
-
-