Package com.nomagic.magicdraw.uaf
Enum UAF.ChallengeKindEnum
- java.lang.Object
-
- java.lang.Enum<UAF.ChallengeKindEnum>
-
- com.nomagic.magicdraw.uaf.UAF.ChallengeKindEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UAF.ChallengeKindEnum>
- Enclosing class:
- UAF
public static enum UAF.ChallengeKindEnum extends java.lang.Enum<UAF.ChallengeKindEnum>
Enumeration of the possible kinds of Challenge.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUSINESS
Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to the business operations of the enterprise.ENTERPRISE
Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to the overall operations of the enterprise.MISSION
Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to one or more Missions or Enduring Tasks of the enterprise.OTHER
Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to some unspecified aspect of the enterprise.STRATEGIC
Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to achieving the desired Effects or Outcomes of the enterprise.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UAF.ChallengeKindEnum
from(java.lang.Object o)
java.lang.String
getText()
static UAF.ChallengeKindEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(UAF profile, UAF.ChallengeKindEnum anEnum)
static UAF.ChallengeKindEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UAF.ChallengeKindEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRATEGIC
public static final UAF.ChallengeKindEnum STRATEGIC
Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to achieving the desired Effects or Outcomes of the enterprise.
-
ENTERPRISE
public static final UAF.ChallengeKindEnum ENTERPRISE
Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to the overall operations of the enterprise.
-
MISSION
public static final UAF.ChallengeKindEnum MISSION
Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to one or more Missions or Enduring Tasks of the enterprise.
-
BUSINESS
public static final UAF.ChallengeKindEnum BUSINESS
Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to the business operations of the enterprise.
-
OTHER
public static final UAF.ChallengeKindEnum OTHER
Indicates that the Challenge associated with this ChallengeKind is a demanding or stimulating situation that applies to some unspecified aspect of the enterprise.
-
-
Method Detail
-
values
public static UAF.ChallengeKindEnum[] 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 (UAF.ChallengeKindEnum c : UAF.ChallengeKindEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UAF.ChallengeKindEnum 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 UAF.ChallengeKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static UAF.ChallengeKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(UAF profile, UAF.ChallengeKindEnum anEnum)
-
-