Interface ImmutableFloatStackFactory
-
- All Known Implementing Classes:
ImmutableFloatStackFactoryImpl
public interface ImmutableFloatStackFactory
A factory which creates instances of typeImmutableFloatStack
. 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 ImmutableFloatStack
empty()
ImmutableFloatStack
of()
Same asempty()
.ImmutableFloatStack
of(float one)
Same aswith(float)
.ImmutableFloatStack
of(float... items)
Same aswith(float[])
.ImmutableFloatStack
ofAll(java.lang.Iterable<java.lang.Float> iterable)
Same aswithAll(Iterable)
.ImmutableFloatStack
ofAll(FloatIterable items)
Same aswithAll(FloatIterable)
.ImmutableFloatStack
ofAllReversed(FloatIterable items)
Same aswithAllReversed(FloatIterable)
.ImmutableFloatStack
with()
Same asempty()
.ImmutableFloatStack
with(float one)
ImmutableFloatStack
with(float... items)
ImmutableFloatStack
withAll(java.lang.Iterable<java.lang.Float> iterable)
ImmutableFloatStack
withAll(FloatIterable items)
ImmutableFloatStack
withAllReversed(FloatIterable items)
-
-
-
Method Detail
-
empty
ImmutableFloatStack empty()
- Since:
- 6.0
-
of
ImmutableFloatStack of()
Same asempty()
.
-
with
ImmutableFloatStack with()
Same asempty()
.
-
of
ImmutableFloatStack of(float one)
Same aswith(float)
.
-
with
ImmutableFloatStack with(float one)
-
of
ImmutableFloatStack of(float... items)
Same aswith(float[])
.
-
with
ImmutableFloatStack with(float... items)
-
ofAll
ImmutableFloatStack ofAll(FloatIterable items)
Same aswithAll(FloatIterable)
.
-
withAll
ImmutableFloatStack withAll(FloatIterable items)
-
ofAll
ImmutableFloatStack ofAll(java.lang.Iterable<java.lang.Float> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableFloatStack withAll(java.lang.Iterable<java.lang.Float> iterable)
-
ofAllReversed
ImmutableFloatStack ofAllReversed(FloatIterable items)
Same aswithAllReversed(FloatIterable)
.
-
withAllReversed
ImmutableFloatStack withAllReversed(FloatIterable items)
-
-