Interface ImmutableIntListFactory
- All Known Implementing Classes:
ImmutableIntListFactoryImpl
public interface ImmutableIntListFactory
A factory which creates instances of type
ImmutableIntList.
This file was automatically generated from template file immutablePrimitiveListFactory.stg.- Since:
- 3.2.
-
Method Summary
Modifier and Type Method Description ImmutableIntListempty()ImmutableIntListof()Same asempty().ImmutableIntListof(int one)Same aswith(int).ImmutableIntListof(int... items)Same aswith(int[]).ImmutableIntListofAll(Iterable<Integer> iterable)Same aswithAll(Iterable).ImmutableIntListofAll(IntStream items)ImmutableIntListofAll(IntIterable items)Same aswithAll(IntIterable).ImmutableIntListwith()Same asempty().ImmutableIntListwith(int one)ImmutableIntListwith(int... items)ImmutableIntListwithAll(Iterable<Integer> iterable)ImmutableIntListwithAll(IntStream items)ImmutableIntListwithAll(IntIterable items)
-
Method Details
-
empty
ImmutableIntList empty()- Since:
- 6.0
-
of
ImmutableIntList of()Same asempty(). -
with
ImmutableIntList with()Same asempty(). -
of
Same aswith(int). -
with
-
of
Same aswith(int[]). -
with
-
ofAll
Same aswithAll(IntIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-