Class EarnedValueCalculationType
java.lang.Object
com.primavera.integration.client.bo.enm.EnumType
com.primavera.integration.client.bo.enm.EarnedValueCalculationType
Enables you to specify default settings for calculating earned value. Valid values are 'At
Completion Values with Current Dates', 'Planned Values with Planned Dates', and 'Planned Values
with Current Dates'.
To use an enumeration in a where clause, make sure you use the internal database value. This can be retrieved from a particular enum instance by calling getValue().
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final EarnedValueCalculationTypestatic final EarnedValueCalculationTypestatic final EarnedValueCalculationTypestatic final EarnedValueCalculationType -
Method Summary
Modifier and TypeMethodDescriptionGets the description of this EarnedValueCalculationType instancestatic EarnedValueCalculationTypegetEarnedValueCalculationType(int iEarnedValueCalculationType) Gets an instance of EarnedValueCalculationType based on the integer value specified.static EarnedValueCalculationTypegetEarnedValueCalculationType(String sEarnedValueCalculationType) Gets an instance of EarnedValueCalculationType based on the String value specified.static String[]Gets an array of all descriptions for this enumerationstatic String[]Gets an array of all internal values for this enumerationgetValue()Gets the internal value of this EarnedValueCalculationType instancetoString()Returns a string representation of the object, which is the same as the description returned by the getDescription() method
-
Field Details
-
NULL
-
AT_COMPLETION_VALUES_WITH_CURRENT_DATES
-
PLANNED_VALUES_WITH_PLANNED_DATES
-
PLANNED_VALUES_WITH_CURRENT_DATES
-
-
Method Details
-
toString
Returns a string representation of the object, which is the same as the description returned by the getDescription() method -
getValue
Gets the internal value of this EarnedValueCalculationType instance -
getDescription
Gets the description of this EarnedValueCalculationType instance- Specified by:
getDescriptionin classEnumType- Returns:
- String the description
-
getEarnedValueCalculationType
public static EarnedValueCalculationType getEarnedValueCalculationType(String sEarnedValueCalculationType) Gets an instance of EarnedValueCalculationType based on the String value specified.- Parameters:
sEarnedValueCalculationType- the internal value or description- Returns:
- EarnedValueCalculationType the unique EarnedValueCalculationType instance
-
getEarnedValueCalculationType
public static EarnedValueCalculationType getEarnedValueCalculationType(int iEarnedValueCalculationType) Gets an instance of EarnedValueCalculationType based on the integer value specified.- Parameters:
iEarnedValueCalculationType- an integer representing a particular value of this class. This value is also used when exporting to XML.- Returns:
- EarnedValueCalculationType the unique EarnedValueCalculationType instance
-
getEnumValues
Gets an array of all internal values for this enumeration- Returns:
- String[] an array of all internal values
-
getEnumDescriptions
Gets an array of all descriptions for this enumeration- Returns:
- String[] an array of all descriptions
-