Interface ImmutableDoubleStackFactory
- All Known Implementing Classes:
ImmutableDoubleStackFactoryImpl
public interface ImmutableDoubleStackFactory
A factory which creates instances of type
ImmutableDoubleStack.
This file was automatically generated from template file immutablePrimitiveStackFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableDoubleStackempty()ImmutableDoubleStackof()Same asempty().ImmutableDoubleStackof(double one)Same aswith(double).ImmutableDoubleStackof(double... items)Same aswith(double[]).ImmutableDoubleStackofAll(Iterable<Double> iterable)Same aswithAll(Iterable).ImmutableDoubleStackofAll(DoubleStream items)ImmutableDoubleStackofAll(DoubleIterable items)Same aswithAll(DoubleIterable).ImmutableDoubleStackofAllReversed(DoubleIterable items)Same aswithAllReversed(DoubleIterable).ImmutableDoubleStackwith()Same asempty().ImmutableDoubleStackwith(double one)ImmutableDoubleStackwith(double... items)ImmutableDoubleStackwithAll(Iterable<Double> iterable)ImmutableDoubleStackwithAll(DoubleStream items)ImmutableDoubleStackwithAll(DoubleIterable items)ImmutableDoubleStackwithAllReversed(DoubleIterable items)
-
Method Details
-
empty
ImmutableDoubleStack empty()- Since:
- 6.0
-
of
ImmutableDoubleStack of()Same asempty(). -
with
ImmutableDoubleStack with()Same asempty(). -
of
Same aswith(double). -
with
-
of
Same aswith(double[]). -
with
-
ofAll
Same aswithAll(DoubleIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-
ofAllReversed
Same aswithAllReversed(DoubleIterable). -
withAllReversed
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-