Interface MutableIntSetFactory
- All Known Implementing Classes:
MutableIntSetFactoryImpl
public interface MutableIntSetFactory
A factory which creates instances of type
MutableIntSet
.
This file was automatically generated from template file mutablePrimitiveSetFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableIntSet
empty()
MutableIntSet
of()
Same asempty()
.MutableIntSet
of(int... items)
Same aswith(int[])
.MutableIntSet
ofAll(Iterable<Integer> iterable)
Same aswithAll(Iterable)
.MutableIntSet
ofAll(IntStream items)
MutableIntSet
ofAll(IntIterable items)
Same aswithAll(IntIterable)
.MutableIntSet
with()
Same asempty()
.MutableIntSet
with(int... items)
MutableIntSet
withAll(Iterable<Integer> iterable)
MutableIntSet
withAll(IntStream items)
MutableIntSet
withAll(IntIterable items)
default MutableIntSet
withInitialCapacity(int capacity)
Same asempty()
.
-
Method Details
-
empty
MutableIntSet empty() -
of
MutableIntSet of()Same asempty()
. -
with
MutableIntSet with()Same asempty()
. -
withInitialCapacity
Same asempty()
. but takes in an initial capacity- Since:
- 10.3
-
of
Same aswith(int[])
. -
with
-
ofAll
Same aswithAll(IntIterable)
. -
withAll
-
ofAll
Same aswithAll(Iterable)
. -
withAll
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-