Interface ImmutableIntListFactory
-
- All Known Implementing Classes:
ImmutableIntListFactoryImpl
public interface ImmutableIntListFactory
A factory which creates instances of typeImmutableIntList
. This file was automatically generated from template file immutablePrimitiveListFactory.stg.- Since:
- 3.2.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableIntList
empty()
ImmutableIntList
of()
Same asempty()
.ImmutableIntList
of(int one)
Same aswith(int)
.ImmutableIntList
of(int... items)
Same aswith(int[])
.ImmutableIntList
ofAll(java.lang.Iterable<java.lang.Integer> iterable)
Same aswithAll(Iterable)
.ImmutableIntList
ofAll(java.util.stream.IntStream items)
ImmutableIntList
ofAll(IntIterable items)
Same aswithAll(IntIterable)
.ImmutableIntList
with()
Same asempty()
.ImmutableIntList
with(int one)
ImmutableIntList
with(int... items)
ImmutableIntList
withAll(java.lang.Iterable<java.lang.Integer> iterable)
ImmutableIntList
withAll(java.util.stream.IntStream items)
ImmutableIntList
withAll(IntIterable items)
-
-
-
Method Detail
-
empty
ImmutableIntList empty()
- Since:
- 6.0
-
of
ImmutableIntList of()
Same asempty()
.
-
with
ImmutableIntList with()
Same asempty()
.
-
of
ImmutableIntList of(int one)
Same aswith(int)
.
-
with
ImmutableIntList with(int one)
-
of
ImmutableIntList of(int... items)
Same aswith(int[])
.
-
with
ImmutableIntList with(int... items)
-
ofAll
ImmutableIntList ofAll(IntIterable items)
Same aswithAll(IntIterable)
.
-
withAll
ImmutableIntList withAll(IntIterable items)
-
ofAll
ImmutableIntList ofAll(java.lang.Iterable<java.lang.Integer> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableIntList withAll(java.lang.Iterable<java.lang.Integer> iterable)
-
ofAll
ImmutableIntList ofAll(java.util.stream.IntStream items)
- Since:
- 9.0
-
withAll
ImmutableIntList withAll(java.util.stream.IntStream items)
- Since:
- 9.0
-
-