Interface MutableIntSetFactory
-
public interface MutableIntSetFactoryA factory which creates instances of typeMutableIntSet. This file was automatically generated from template file mutablePrimitiveSetFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description MutableIntSetempty()MutableIntSetof()Same asempty().MutableIntSetof(int... items)Same aswith(int[]).MutableIntSetofAll(Iterable<Integer> iterable)Same aswithAll(Iterable).MutableIntSetofAll(IntStream items)MutableIntSetofAll(IntIterable items)Same aswithAll(IntIterable).MutableIntSetwith()Same asempty().MutableIntSetwith(int... items)MutableIntSetwithAll(Iterable<Integer> iterable)MutableIntSetwithAll(IntStream items)MutableIntSetwithAll(IntIterable items)default MutableIntSetwithInitialCapacity(int capacity)Same asempty().
-
-
-
Method Detail
-
empty
MutableIntSet empty()
-
of
MutableIntSet of()
Same asempty().
-
with
MutableIntSet with()
Same asempty().
-
withInitialCapacity
default MutableIntSet withInitialCapacity(int capacity)
Same asempty(). but takes in an initial capacity- Since:
- 10.3
-
of
MutableIntSet of(int... items)
Same aswith(int[]).
-
with
MutableIntSet with(int... items)
-
ofAll
MutableIntSet ofAll(IntIterable items)
Same aswithAll(IntIterable).
-
withAll
MutableIntSet withAll(IntIterable items)
-
ofAll
MutableIntSet ofAll(Iterable<Integer> iterable)
Same aswithAll(Iterable).
-
withAll
MutableIntSet withAll(Iterable<Integer> iterable)
-
ofAll
MutableIntSet ofAll(IntStream items)
- Since:
- 9.0
-
withAll
MutableIntSet withAll(IntStream items)
- Since:
- 9.0
-
-