Interface ImmutableFloatStackFactory
-
public interface ImmutableFloatStackFactoryA 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 ImmutableFloatStackempty()ImmutableFloatStackof()Same asempty().ImmutableFloatStackof(float one)Same aswith(float).ImmutableFloatStackof(float... items)Same aswith(float[]).ImmutableFloatStackofAll(Iterable<Float> iterable)Same aswithAll(Iterable).ImmutableFloatStackofAll(FloatIterable items)Same aswithAll(FloatIterable).ImmutableFloatStackofAllReversed(FloatIterable items)Same aswithAllReversed(FloatIterable).ImmutableFloatStackwith()Same asempty().ImmutableFloatStackwith(float one)ImmutableFloatStackwith(float... items)ImmutableFloatStackwithAll(Iterable<Float> iterable)ImmutableFloatStackwithAll(FloatIterable items)ImmutableFloatStackwithAllReversed(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(Iterable<Float> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableFloatStack withAll(Iterable<Float> iterable)
-
ofAllReversed
ImmutableFloatStack ofAllReversed(FloatIterable items)
Same aswithAllReversed(FloatIterable).
-
withAllReversed
ImmutableFloatStack withAllReversed(FloatIterable items)
-
-