Package com.nomagic.magicdraw.sysml.util
Enum SysMLProfile.RiskKindEnum
- java.lang.Object
-
- java.lang.Enum<SysMLProfile.RiskKindEnum>
-
- com.nomagic.magicdraw.sysml.util.SysMLProfile.RiskKindEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SysMLProfile.RiskKindEnum>
- Enclosing class:
- SysMLProfile
public static enum SysMLProfile.RiskKindEnum extends java.lang.Enum<SysMLProfile.RiskKindEnum>
1) High indicates an unacceptable level of risk, 2) Medium indicates an acceptable level of risk, and 3) Low indicates a minimal level of risk or no risk
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SysMLProfile.RiskKindEnum
from(java.lang.Object o)
java.lang.String
getText()
static SysMLProfile.RiskKindEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(SysMLProfile profile, SysMLProfile.RiskKindEnum anEnum)
static SysMLProfile.RiskKindEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SysMLProfile.RiskKindEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HIGH
public static final SysMLProfile.RiskKindEnum HIGH
High indicates an unacceptable level of risk
-
MEDIUM
public static final SysMLProfile.RiskKindEnum MEDIUM
Medium indicates an acceptable level of risk
-
LOW
public static final SysMLProfile.RiskKindEnum LOW
Low indicates a minimal level of risk or no risk
-
-
Method Detail
-
values
public static SysMLProfile.RiskKindEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SysMLProfile.RiskKindEnum c : SysMLProfile.RiskKindEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SysMLProfile.RiskKindEnum valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getText
public java.lang.String getText()
-
from
@CheckForNull public static SysMLProfile.RiskKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static SysMLProfile.RiskKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(SysMLProfile profile, SysMLProfile.RiskKindEnum anEnum)
-
-