Interface MutableFloatStackFactory
-
- All Known Implementing Classes:
MutableFloatStackFactoryImpl
public interface MutableFloatStackFactory
A factory which creates instances of typeMutableFloatStack
. This file was automatically generated from template file mutablePrimitiveStackFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MutableFloatStack
empty()
MutableFloatStack
of()
Same asempty()
.MutableFloatStack
of(float... items)
Same aswith(float[])
.MutableFloatStack
ofAll(java.lang.Iterable<java.lang.Float> iterable)
Same aswithAll(Iterable)
.MutableFloatStack
ofAll(FloatIterable items)
Same aswithAll(FloatIterable)
.MutableFloatStack
ofAllReversed(FloatIterable items)
Same aswithAllReversed(FloatIterable)
.MutableFloatStack
with()
Same asempty()
.MutableFloatStack
with(float... items)
MutableFloatStack
withAll(java.lang.Iterable<java.lang.Float> iterable)
MutableFloatStack
withAll(FloatIterable items)
MutableFloatStack
withAllReversed(FloatIterable items)
-
-
-
Method Detail
-
empty
MutableFloatStack empty()
-
of
MutableFloatStack of()
Same asempty()
.
-
with
MutableFloatStack with()
Same asempty()
.
-
of
MutableFloatStack of(float... items)
Same aswith(float[])
.
-
with
MutableFloatStack with(float... items)
-
ofAll
MutableFloatStack ofAll(FloatIterable items)
Same aswithAll(FloatIterable)
.
-
withAll
MutableFloatStack withAll(FloatIterable items)
-
ofAll
MutableFloatStack ofAll(java.lang.Iterable<java.lang.Float> iterable)
Same aswithAll(Iterable)
.
-
withAll
MutableFloatStack withAll(java.lang.Iterable<java.lang.Float> iterable)
-
ofAllReversed
MutableFloatStack ofAllReversed(FloatIterable items)
Same aswithAllReversed(FloatIterable)
.
-
withAllReversed
MutableFloatStack withAllReversed(FloatIterable items)
-
-