Interface ImmutableIntStackFactory
-
public interface ImmutableIntStackFactoryA factory which creates instances of typeImmutableIntStack. This file was automatically generated from template file immutablePrimitiveStackFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableIntStackempty()ImmutableIntStackof()Same asempty().ImmutableIntStackof(int one)Same aswith(int).ImmutableIntStackof(int... items)Same aswith(int[]).ImmutableIntStackofAll(Iterable<Integer> iterable)Same aswithAll(Iterable).ImmutableIntStackofAll(IntStream items)ImmutableIntStackofAll(IntIterable items)Same aswithAll(IntIterable).ImmutableIntStackofAllReversed(IntIterable items)Same aswithAllReversed(IntIterable).ImmutableIntStackwith()Same asempty().ImmutableIntStackwith(int one)ImmutableIntStackwith(int... items)ImmutableIntStackwithAll(Iterable<Integer> iterable)ImmutableIntStackwithAll(IntStream items)ImmutableIntStackwithAll(IntIterable items)ImmutableIntStackwithAllReversed(IntIterable items)
-
-
-
Method Detail
-
empty
ImmutableIntStack empty()
- Since:
- 6.0
-
of
ImmutableIntStack of()
Same asempty().
-
with
ImmutableIntStack with()
Same asempty().
-
of
ImmutableIntStack of(int one)
Same aswith(int).
-
with
ImmutableIntStack with(int one)
-
of
ImmutableIntStack of(int... items)
Same aswith(int[]).
-
with
ImmutableIntStack with(int... items)
-
ofAll
ImmutableIntStack ofAll(IntIterable items)
Same aswithAll(IntIterable).
-
withAll
ImmutableIntStack withAll(IntIterable items)
-
ofAll
ImmutableIntStack ofAll(Iterable<Integer> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableIntStack withAll(Iterable<Integer> iterable)
-
ofAllReversed
ImmutableIntStack ofAllReversed(IntIterable items)
Same aswithAllReversed(IntIterable).
-
withAllReversed
ImmutableIntStack withAllReversed(IntIterable items)
-
ofAll
ImmutableIntStack ofAll(IntStream items)
- Since:
- 9.0
-
withAll
ImmutableIntStack withAll(IntStream items)
- Since:
- 9.0
-
-