Interface ImmutableIntListFactory
-
public interface ImmutableIntListFactoryA 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 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 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(Iterable<Integer> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableIntList withAll(Iterable<Integer> iterable)
-
ofAll
ImmutableIntList ofAll(IntStream items)
- Since:
- 9.0
-
withAll
ImmutableIntList withAll(IntStream items)
- Since:
- 9.0
-
-