Enum Class ProjectHealth
- All Implemented Interfaces:
Serializable
,Comparable<ProjectHealth>
,Constable
ProjectHealth lists suggested health values for a project.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWork on the project has finished, and all deliverables have either been completed, abandoned or moved to a different project.The project is no longer being worked on either because it completed successfully, or was cancelled, or put on hold.Project activity has not yet started.Work on the project will not continue despite incomplete deliverables.The project activity is proceeding, consuming time and resources as anticipated, whilst making the planned amount of progress towards the desired deliverables. -
Method Summary
Modifier and TypeMethodDescriptionReturn the category for this value.Return the colour for this value.Return the description for this value.getName()
Return the name of the value.Return the qualified name for this value.toString()
Output of this enum class and main value.static ProjectHealth
Returns the enum constant of this class with the specified name.static ProjectHealth[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NOT_STARTED
Project activity has not yet started. -
ON_TRACK
The project activity is proceeding, consuming time and resources as anticipated, whilst making the planned amount of progress towards the desired deliverables. -
AT_RISK
Work on the project has finished, and all deliverables have either been completed, abandoned or moved to a different project. -
OFF_TRACK
Work on the project will not continue despite incomplete deliverables. This may be due to a change in direction or a road block that is preventing further progress. -
NO_ACTIVITY
The project is no longer being worked on either because it completed successfully, or was cancelled, or put on hold.
-
-
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
-
getName
Return the name of the value.- Returns:
- string
-
getDescription
Return the description for this value.- Returns:
- string
-
getColour
Return the colour for this value.- Returns:
- string
-
getQualifiedName
Return the qualified name for this value.- Returns:
- string
-
getCategory
Return the category for this value.- Returns:
- string
-
toString
Output of this enum class and main value.- Overrides:
toString
in classEnum<ProjectHealth>
- Returns:
- string showing enum value
-