Interface ImmutableIntSetFactory
-
public interface ImmutableIntSetFactoryA factory which creates instances of typeImmutableIntSet. This file was automatically generated from template file immutablePrimitiveSetFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableIntSetempty()ImmutableIntSetof()Same asempty().ImmutableIntSetof(int one)Same aswith(int).ImmutableIntSetof(int... items)Same aswith(int[]).ImmutableIntSetofAll(Iterable<Integer> iterable)Same aswithAll(Iterable).ImmutableIntSetofAll(IntStream items)ImmutableIntSetofAll(IntIterable items)Same aswithAll(IntIterable).ImmutableIntSetwith()Same asempty().ImmutableIntSetwith(int one)ImmutableIntSetwith(int... items)ImmutableIntSetwithAll(Iterable<Integer> iterable)ImmutableIntSetwithAll(IntStream items)ImmutableIntSetwithAll(IntIterable items)
-
-
-
Method Detail
-
empty
ImmutableIntSet empty()
- Since:
- 6.0
-
of
ImmutableIntSet of()
Same asempty().
-
with
ImmutableIntSet with()
Same asempty().
-
of
ImmutableIntSet of(int one)
Same aswith(int).
-
with
ImmutableIntSet with(int one)
-
of
ImmutableIntSet of(int... items)
Same aswith(int[]).
-
with
ImmutableIntSet with(int... items)
-
ofAll
ImmutableIntSet ofAll(IntIterable items)
Same aswithAll(IntIterable).
-
withAll
ImmutableIntSet withAll(IntIterable items)
-
ofAll
ImmutableIntSet ofAll(Iterable<Integer> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableIntSet withAll(Iterable<Integer> iterable)
-
ofAll
ImmutableIntSet ofAll(IntStream items)
- Since:
- 9.0
-
withAll
ImmutableIntSet withAll(IntStream items)
- Since:
- 9.0
-
-