Enum Class ProjectStatusDefinition
java.lang.Object
java.lang.Enum<ProjectStatusDefinition>
org.odpi.openmetadata.samples.archiveutilities.governanceprogram.ProjectStatusDefinition
- All Implemented Interfaces:
Serializable
,Comparable<ProjectStatusDefinition>
,Constable
The ProjectStatusDefinition is used to feed the definition of the ProjectStatus valid value set for Coco Pharmaceuticals' projects.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThis project has been abandoned and no further work on it is expected.This project is in final preparations to start.This project is running.This project has be approved to go ahead.This project has completed.This project has an outline project plan and timeline.This project has been proposed but there is no agreement to allocate resources or proceed.This project is not able to make progress because of an external factor. -
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturn the description of the value's meaning.Return the printable name.This is the preferred value that applications should use for this valid value.toString()
Output of this enum class and main value.static ProjectStatusDefinition
Returns the enum constant of this class with the specified name.static ProjectStatusDefinition[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PROPOSED
This project has been proposed but there is no agreement to allocate resources or proceed. -
APPROVED
This project has be approved to go ahead. Resources a approved for it in principle, but specific resources may not have been allocated yet. -
PLANNED
This project has an outline project plan and timeline. Resources have been allocated. -
ACTIVATING
This project is in final preparations to start. -
ACTIVE
This project is running. -
STALLED
This project is not able to make progress because of an external factor. -
COMPLETED
This project has completed. -
ABANDONED
This project has been abandoned and no further work on it is expected.
-
-
Field Details
-
validValueSetName
- See Also:
-
validValueSetPropertyName
- See Also:
-
validValueSetDescription
- See Also:
-
validValueSetUsage
- See Also:
-
validValueSetScope
- See Also:
-
defaultValue
-
-
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
-
getPreferredValue
This is the preferred value that applications should use for this valid value.- Returns:
- string value
-
getDisplayName
Return the printable name.- Returns:
- string name
-
getDescription
Return the description of the value's meaning.- Returns:
- string text
-
toString
Output of this enum class and main value.- Overrides:
toString
in classEnum<ProjectStatusDefinition>
- Returns:
- string showing enum value
-