Enum MutableFloatStackFactoryImpl
java.lang.Object
java.lang.Enum<MutableFloatStackFactoryImpl>
org.eclipse.collections.impl.stack.mutable.primitive.MutableFloatStackFactoryImpl
- All Implemented Interfaces:
Serializable
,Comparable<MutableFloatStackFactoryImpl>
,java.lang.constant.Constable
,MutableFloatStackFactory
public enum MutableFloatStackFactoryImpl extends Enum<MutableFloatStackFactoryImpl> implements MutableFloatStackFactory
MutableFloatStackFactoryImpl is a factory implementation which creates instances of type
MutableFloatStack
.
This file was automatically generated from template file mutablePrimitiveStackFactoryImpl.stg.- Since:
- 6.0.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Method Summary
Modifier and Type Method Description MutableFloatStack
empty()
MutableFloatStack
of()
Same asMutableFloatStackFactory.empty()
.MutableFloatStack
of(float... items)
MutableFloatStack
ofAll(Iterable<Float> iterable)
MutableFloatStack
ofAll(FloatIterable items)
MutableFloatStack
ofAllReversed(FloatIterable items)
static MutableFloatStackFactoryImpl
valueOf(String name)
Returns the enum constant of this type with the specified name.static MutableFloatStackFactoryImpl[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.MutableFloatStack
with()
Same asMutableFloatStackFactory.empty()
.MutableFloatStack
with(float... items)
MutableFloatStack
withAll(Iterable<Float> iterable)
MutableFloatStack
withAll(FloatIterable items)
MutableFloatStack
withAllReversed(FloatIterable items)
Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
empty
- Specified by:
empty
in interfaceMutableFloatStackFactory
-
of
Description copied from interface:MutableFloatStackFactory
Same asMutableFloatStackFactory.empty()
.- Specified by:
of
in interfaceMutableFloatStackFactory
-
with
Description copied from interface:MutableFloatStackFactory
Same asMutableFloatStackFactory.empty()
.- Specified by:
with
in interfaceMutableFloatStackFactory
-
of
Description copied from interface:MutableFloatStackFactory
- Specified by:
of
in interfaceMutableFloatStackFactory
-
with
- Specified by:
with
in interfaceMutableFloatStackFactory
-
ofAll
Description copied from interface:MutableFloatStackFactory
- Specified by:
ofAll
in interfaceMutableFloatStackFactory
-
withAll
- Specified by:
withAll
in interfaceMutableFloatStackFactory
-
ofAll
Description copied from interface:MutableFloatStackFactory
- Specified by:
ofAll
in interfaceMutableFloatStackFactory
- Since:
- 10.0
-
withAll
- Specified by:
withAll
in interfaceMutableFloatStackFactory
- Since:
- 10.0
-
ofAllReversed
Description copied from interface:MutableFloatStackFactory
- Specified by:
ofAllReversed
in interfaceMutableFloatStackFactory
-
withAllReversed
- Specified by:
withAllReversed
in interfaceMutableFloatStackFactory
-