Package com.nomagic.magicdraw.uaf
Enum UAF.ActualMilestoneKindEnum
- java.lang.Object
-
- java.lang.Enum<UAF.ActualMilestoneKindEnum>
-
- com.nomagic.magicdraw.uaf.UAF.ActualMilestoneKindEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UAF.ActualMilestoneKindEnum>
- Enclosing class:
- UAF
public static enum UAF.ActualMilestoneKindEnum extends java.lang.Enum<UAF.ActualMilestoneKindEnum>
Enumeration of the possible kinds of ActualProjectMilestone.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEPLOYED
Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is a configuration deployment milestone.INSERVICE
Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is when the configuration goes into service.NOLONGERUSED
Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is when the deployed configuration is no longer used.OTHER
Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is not one of the standard ActualMilestoneKinds.OUTOFSERVICE
Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is when the in service configuration goes out of service.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UAF.ActualMilestoneKindEnum
from(java.lang.Object o)
java.lang.String
getText()
static UAF.ActualMilestoneKindEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(UAF profile, UAF.ActualMilestoneKindEnum anEnum)
static UAF.ActualMilestoneKindEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UAF.ActualMilestoneKindEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSERVICE
public static final UAF.ActualMilestoneKindEnum INSERVICE
Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is when the configuration goes into service.
-
DEPLOYED
public static final UAF.ActualMilestoneKindEnum DEPLOYED
Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is a configuration deployment milestone.
-
NOLONGERUSED
public static final UAF.ActualMilestoneKindEnum NOLONGERUSED
Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is when the deployed configuration is no longer used.
-
OUTOFSERVICE
public static final UAF.ActualMilestoneKindEnum OUTOFSERVICE
Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is when the in service configuration goes out of service.
-
OTHER
public static final UAF.ActualMilestoneKindEnum OTHER
Indicates that the ActualProjectMilestone associated with the ActualMilestoneKind is not one of the standard ActualMilestoneKinds.
-
-
Method Detail
-
values
public static UAF.ActualMilestoneKindEnum[] 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.ActualMilestoneKindEnum c : UAF.ActualMilestoneKindEnum.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.ActualMilestoneKindEnum 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.ActualMilestoneKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static UAF.ActualMilestoneKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(UAF profile, UAF.ActualMilestoneKindEnum anEnum)
-
-