Package com.nomagic.magicdraw.uaf
Enum UAF.ProjectKindEnum
- java.lang.Object
-
- java.lang.Enum<UAF.ProjectKindEnum>
-
- com.nomagic.magicdraw.uaf.UAF.ProjectKindEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UAF.ProjectKindEnum>
- Enclosing class:
- UAF
public static enum UAF.ProjectKindEnum extends java.lang.Enum<UAF.ProjectKindEnum>
Enumeration of the possible kinds of project applicable to an ActualProject.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PERSONNELDEVELOPMENT
Indicates that the ActualProject associated with the ProjectKind is an undertaking that relates to the training and enablement of personnel to enable them help achieve the organizations objectives.PORTFOLIO
Indicates that the ActualProject associated with the ProjectKind is an undertaking comprised of the Projects and Programmes that are the totality of an organization's investment (or segment thereof) in the changes required to achieve its strategic objectives.PROGRAMME
Indicates that the ActualProject associated with the ProjectKind is an undertaking that is a temporary, flexible organization created to co-ordinate, direct and oversee the implementation of a set of related Projects and Tasks in order to deliver outcomes and benefits related to the organization s strategic objectives.PROJECT
Indicates that the ActualProject associated with the ProjectKind is an undertaking that is a time-limited endeavor to create a specific set of products or services.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UAF.ProjectKindEnum
from(java.lang.Object o)
java.lang.String
getText()
static UAF.ProjectKindEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(UAF profile, UAF.ProjectKindEnum anEnum)
static UAF.ProjectKindEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UAF.ProjectKindEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROGRAMME
public static final UAF.ProjectKindEnum PROGRAMME
Indicates that the ActualProject associated with the ProjectKind is an undertaking that is a temporary, flexible organization created to co-ordinate, direct and oversee the implementation of a set of related Projects and Tasks in order to deliver outcomes and benefits related to the organization s strategic objectives. A programme is likely to have a lifespan of several years. During a programme lifecycle, projects are initiated, executed, and closed. Programmes provide an umbrella under which these projects can be co-ordinated. The programme integrates the projects so that it can deliver an outcome greater than the sum of its parts.
-
PORTFOLIO
public static final UAF.ProjectKindEnum PORTFOLIO
Indicates that the ActualProject associated with the ProjectKind is an undertaking comprised of the Projects and Programmes that are the totality of an organization's investment (or segment thereof) in the changes required to achieve its strategic objectives.
-
PROJECT
public static final UAF.ProjectKindEnum PROJECT
Indicates that the ActualProject associated with the ProjectKind is an undertaking that is a time-limited endeavor to create a specific set of products or services.
-
PERSONNELDEVELOPMENT
public static final UAF.ProjectKindEnum PERSONNELDEVELOPMENT
Indicates that the ActualProject associated with the ProjectKind is an undertaking that relates to the training and enablement of personnel to enable them help achieve the organizations objectives.
-
-
Method Detail
-
values
public static UAF.ProjectKindEnum[] 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.ProjectKindEnum c : UAF.ProjectKindEnum.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.ProjectKindEnum 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.ProjectKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static UAF.ProjectKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(UAF profile, UAF.ProjectKindEnum anEnum)
-
-