Enum Class FinalApplicationStatus
- All Implemented Interfaces:
Serializable,Comparable<FinalApplicationStatus>,Constable
Enumeration of various final states of an
Application.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionApplication which has subtasks with multiple end states.Application which failed.Application which was terminated by a user or admin.Application which finished successfully.Undefined state when either the application has not yet finished -
Method Summary
Modifier and TypeMethodDescriptionstatic FinalApplicationStatusReturns the enum constant of this class with the specified name.static FinalApplicationStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNDEFINED
Undefined state when either the application has not yet finished -
SUCCEEDED
Application which finished successfully. -
FAILED
Application which failed. -
KILLED
Application which was terminated by a user or admin. -
ENDED
Application which has subtasks with multiple end states.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-