Interface ImmutableIntSetFactory
-
- All Known Implementing Classes:
ImmutableIntSetFactoryImpl
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(java.lang.Iterable<java.lang.Integer> iterable)Same aswithAll(Iterable).ImmutableIntSetofAll(java.util.stream.IntStream items)ImmutableIntSetofAll(IntIterable items)Same aswithAll(IntIterable).ImmutableIntSetwith()Same asempty().ImmutableIntSetwith(int one)ImmutableIntSetwith(int... items)ImmutableIntSetwithAll(java.lang.Iterable<java.lang.Integer> iterable)ImmutableIntSetwithAll(java.util.stream.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(java.lang.Iterable<java.lang.Integer> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableIntSet withAll(java.lang.Iterable<java.lang.Integer> iterable)
-
ofAll
ImmutableIntSet ofAll(java.util.stream.IntStream items)
- Since:
- 9.0
-
withAll
ImmutableIntSet withAll(java.util.stream.IntStream items)
- Since:
- 9.0
-
-