Package com.nomagic.updm.utils
Enum Class UPDMProfile.DevelopmentStatusEnum
java.lang.Object
java.lang.Enum<UPDMProfile.DevelopmentStatusEnum>
com.nomagic.updm.utils.UPDMProfile.DevelopmentStatusEnum
- All Implemented Interfaces:
Serializable
,Comparable<UPDMProfile.DevelopmentStatusEnum>
,Constable
- Enclosing class:
- UPDMProfile
public static enum UPDMProfile.DevelopmentStatusEnum
extends Enum<UPDMProfile.DevelopmentStatusEnum>
Enumeration of development statuses, used to support the status tag of the DesignRule stereotype.
-
Enum Constant Summary
Enum ConstantDescriptionIndicates that the development of the design rule is in Draft state.Indicates that the development of the design rule is in Identified state.Indicates that the development of the design rule is in Obsolete state.Indicates that the development of the design rule is in Proposal state.Indicates that the development of the design rule is in Rejected state.Indicates that the development of the design rule is in Verified state. -
Method Summary
Modifier and TypeMethodDescriptiongetText()
toEnum
(EnumerationLiteral literal) static EnumerationLiteral
toEnumerationLiteral
(UPDMProfile profile, UPDMProfile.DevelopmentStatusEnum anEnum) Returns the enum constant of this class with the specified name.static UPDMProfile.DevelopmentStatusEnum[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
IDENTIFIED
Indicates that the development of the design rule is in Identified state. -
DRAFT
Indicates that the development of the design rule is in Draft state. -
PROPOSAL
Indicates that the development of the design rule is in Proposal state. -
VERIFIED
Indicates that the development of the design rule is in Verified state. -
REJECTED
Indicates that the development of the design rule is in Rejected state. -
OBSOLETE
Indicates that the development of the design rule is in Obsolete state.
-
-
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
-
getText
-
from
-
toEnum
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(UPDMProfile profile, UPDMProfile.DevelopmentStatusEnum anEnum)
-