Package com.nomagic.magicdraw.uaf
Enum UAF.ValueItemKindEnum
- java.lang.Object
-
- java.lang.Enum<UAF.ValueItemKindEnum>
-
- com.nomagic.magicdraw.uaf.UAF.ValueItemKindEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<UAF.ValueItemKindEnum>
- Enclosing class:
- UAF
public static enum UAF.ValueItemKindEnum extends java.lang.Enum<UAF.ValueItemKindEnum>
Enumeration of the possible kinds of ValueItem.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BENEFITIndicates that the ValueItem associated with this ValueItemKind is an advantage or profit gained from achieving the EnterpriseGoal.COSTIndicates that the ValueItem associated with this ValueItemKind is an amounts that an enterprise incurs in order to make goods and/or provide services.KPIIndicates that the ValueItem associated with this ValueItemKind is a measurable value that demonstrates how effectively an enterprise is achieving key EnterpriseGoals and Objectives.LOSSIndicates that the ValueItem associated with this ValueItemKind is an amount of money lost by an enterprise.OTHERIndicates that the ValueItem associated with this ValueItemKind is not one of the standard ValueItemKinds.QUALITYIndicates that the ValueItem associated with this ValueItemKind is a measure of excellence.REVENUEIndicates that the ValueItem associated with this ValueItemKind is an income that an enterprise receives regularly, or an amount representing such incomeTIMEIndicates that the ValueItem associated with this ValueItemKind is the measured or measurable period during which an activity, process, or condition exists or continues.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UAF.ValueItemKindEnumfrom(java.lang.Object o)java.lang.StringgetText()static UAF.ValueItemKindEnumtoEnum(EnumerationLiteral literal)static EnumerationLiteraltoEnumerationLiteral(UAF profile, UAF.ValueItemKindEnum anEnum)static UAF.ValueItemKindEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static UAF.ValueItemKindEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TIME
public static final UAF.ValueItemKindEnum TIME
Indicates that the ValueItem associated with this ValueItemKind is the measured or measurable period during which an activity, process, or condition exists or continues.
-
COST
public static final UAF.ValueItemKindEnum COST
Indicates that the ValueItem associated with this ValueItemKind is an amounts that an enterprise incurs in order to make goods and/or provide services.
-
QUALITY
public static final UAF.ValueItemKindEnum QUALITY
Indicates that the ValueItem associated with this ValueItemKind is a measure of excellence.
-
REVENUE
public static final UAF.ValueItemKindEnum REVENUE
Indicates that the ValueItem associated with this ValueItemKind is an income that an enterprise receives regularly, or an amount representing such income
-
BENEFIT
public static final UAF.ValueItemKindEnum BENEFIT
Indicates that the ValueItem associated with this ValueItemKind is an advantage or profit gained from achieving the EnterpriseGoal.
-
KPI
public static final UAF.ValueItemKindEnum KPI
Indicates that the ValueItem associated with this ValueItemKind is a measurable value that demonstrates how effectively an enterprise is achieving key EnterpriseGoals and Objectives.
-
LOSS
public static final UAF.ValueItemKindEnum LOSS
Indicates that the ValueItem associated with this ValueItemKind is an amount of money lost by an enterprise.
-
OTHER
public static final UAF.ValueItemKindEnum OTHER
Indicates that the ValueItem associated with this ValueItemKind is not one of the standard ValueItemKinds.
-
-
Method Detail
-
values
public static UAF.ValueItemKindEnum[] 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.ValueItemKindEnum c : UAF.ValueItemKindEnum.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.ValueItemKindEnum 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.ValueItemKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static UAF.ValueItemKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(UAF profile, UAF.ValueItemKindEnum anEnum)
-
-