Interface ImmutableIntStackFactory
- All Known Implementing Classes:
ImmutableIntStackFactoryImpl
public interface ImmutableIntStackFactory
A factory which creates instances of type
ImmutableIntStack.
This file was automatically generated from template file immutablePrimitiveStackFactory.stg.- Since:
- 4.0.
-
Method Summary
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 Details
-
empty
ImmutableIntStack empty()- Since:
- 6.0
-
of
ImmutableIntStack of()Same asempty(). -
with
ImmutableIntStack with()Same asempty(). -
of
Same aswith(int). -
with
-
of
Same aswith(int[]). -
with
-
ofAll
Same aswithAll(IntIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-
ofAllReversed
Same aswithAllReversed(IntIterable). -
withAllReversed
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-