Class RateType
java.lang.Object
com.primavera.integration.client.bo.enm.EnumType
com.primavera.integration.client.bo.enm.RateType
Rate type enumerations are used with resource assignments to specify which of the five prices
specified for the resource will be used to calculate the cost for the resource assignment. They
are also used with baseline projects and projects for specifying the default rate type to be used
when adding resource assignments to a project. Valid values are 'Price / Unit', 'Price / Unit2',
'Price / Unit3', 'Price / Unit4', and 'Price / Unit5'. See also RoleRate, RateSource, and
RateSourcePreference for more details on how rates can be used in cost calculation.
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
Fields -
Method Summary
Modifier and TypeMethodDescriptionGets the description of this RateType instancestatic String[]Gets an array of all descriptions for this enumerationstatic String[]Gets an array of all internal values for this enumerationstatic RateTypegetRateType(int iRateType) Gets an instance of RateType based on the integer value specified.static RateTypegetRateType(String sRateType) Gets an instance of RateType based on the String value specified.getValue()Gets the internal value of this RateType instancetoString()Returns a string representation of the object, which is the same as the description returned by the getDescription() method
-
Field Details
-
NULL
-
COSTPERQTY
-
COSTPERQTY2
-
COSTPERQTY3
-
COSTPERQTY4
-
COSTPERQTY5
-
-
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 RateType instance -
getDescription
Gets the description of this RateType instance- Specified by:
getDescriptionin classEnumType- Returns:
- String the description
-
getRateType
Gets an instance of RateType based on the String value specified.- Parameters:
sRateType- the internal value or description- Returns:
- RateType the unique RateType instance
-
getRateType
Gets an instance of RateType based on the integer value specified.- Parameters:
iRateType- an integer representing a particular value of this class. This value is also used when exporting to XML.- Returns:
- RateType the unique RateType 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
-