Class ImmutableFloatStackFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.stack.immutable.primitive.ImmutableFloatStackFactoryImpl
-
- All Implemented Interfaces:
ImmutableFloatStackFactory
public class ImmutableFloatStackFactoryImpl extends Object implements ImmutableFloatStackFactory
ImmutableFloatStackFactoryImpl is a factory implementation which creates instances of typeImmutableFloatStack. This file was automatically generated from template file immutablePrimitiveStackFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableFloatStackFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableFloatStackFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableFloatStackempty()ImmutableFloatStackof()ImmutableFloatStackof(float one)ImmutableFloatStackof(float... items)ImmutableFloatStackofAll(Iterable<Float> iterable)ImmutableFloatStackofAll(FloatIterable items)ImmutableFloatStackofAllReversed(FloatIterable items)ImmutableFloatStackwith()ImmutableFloatStackwith(float one)ImmutableFloatStackwith(float... items)ImmutableFloatStackwithAll(Iterable<Float> iterable)ImmutableFloatStackwithAll(FloatIterable items)ImmutableFloatStackwithAllReversed(FloatIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableFloatStackFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableFloatStack empty()
- Specified by:
emptyin interfaceImmutableFloatStackFactory
-
of
public ImmutableFloatStack of()
- Specified by:
ofin interfaceImmutableFloatStackFactory
-
with
public ImmutableFloatStack with()
- Specified by:
within interfaceImmutableFloatStackFactory
-
of
public ImmutableFloatStack of(float one)
- Specified by:
ofin interfaceImmutableFloatStackFactory
-
with
public ImmutableFloatStack with(float one)
- Specified by:
within interfaceImmutableFloatStackFactory
-
of
public ImmutableFloatStack of(float... items)
- Specified by:
ofin interfaceImmutableFloatStackFactory
-
with
public ImmutableFloatStack with(float... items)
- Specified by:
within interfaceImmutableFloatStackFactory
-
ofAll
public ImmutableFloatStack ofAll(FloatIterable items)
- Specified by:
ofAllin interfaceImmutableFloatStackFactory
-
withAll
public ImmutableFloatStack withAll(FloatIterable items)
- Specified by:
withAllin interfaceImmutableFloatStackFactory
-
ofAll
public ImmutableFloatStack ofAll(Iterable<Float> iterable)
- Specified by:
ofAllin interfaceImmutableFloatStackFactory- Since:
- 10.0
-
withAll
public ImmutableFloatStack withAll(Iterable<Float> iterable)
- Specified by:
withAllin interfaceImmutableFloatStackFactory- Since:
- 10.0
-
ofAllReversed
public ImmutableFloatStack ofAllReversed(FloatIterable items)
- Specified by:
ofAllReversedin interfaceImmutableFloatStackFactory
-
withAllReversed
public ImmutableFloatStack withAllReversed(FloatIterable items)
- Specified by:
withAllReversedin interfaceImmutableFloatStackFactory
-
-