Interface ImmutableDoubleStackFactory
-
public interface ImmutableDoubleStackFactoryA factory which creates instances of typeImmutableDoubleStack. 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 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 Detail
-
empty
ImmutableDoubleStack empty()
- Since:
- 6.0
-
of
ImmutableDoubleStack of()
Same asempty().
-
with
ImmutableDoubleStack with()
Same asempty().
-
of
ImmutableDoubleStack of(double one)
Same aswith(double).
-
with
ImmutableDoubleStack with(double one)
-
of
ImmutableDoubleStack of(double... items)
Same aswith(double[]).
-
with
ImmutableDoubleStack with(double... items)
-
ofAll
ImmutableDoubleStack ofAll(DoubleIterable items)
Same aswithAll(DoubleIterable).
-
withAll
ImmutableDoubleStack withAll(DoubleIterable items)
-
ofAll
ImmutableDoubleStack ofAll(Iterable<Double> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableDoubleStack withAll(Iterable<Double> iterable)
-
ofAllReversed
ImmutableDoubleStack ofAllReversed(DoubleIterable items)
Same aswithAllReversed(DoubleIterable).
-
withAllReversed
ImmutableDoubleStack withAllReversed(DoubleIterable items)
-
ofAll
ImmutableDoubleStack ofAll(DoubleStream items)
- Since:
- 9.0
-
withAll
ImmutableDoubleStack withAll(DoubleStream items)
- Since:
- 9.0
-
-