Class ScheduleFloatType
java.lang.Object
com.primavera.integration.client.bo.enm.EnumType
com.primavera.integration.client.bo.enm.ScheduleFloatType
Schedule float type enumerations are used with schedule options to specify the method for
calculating total float for all activities. Valid values are 'Start Float = Late Start - Early
Start', 'Finish Float = Late Finish - Early Finish', and 'Smallest of Start Float and Finish
Float'.
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 ScheduleFloatTypestatic final ScheduleFloatTypestatic final ScheduleFloatTypestatic final ScheduleFloatType -
Method Summary
Modifier and TypeMethodDescriptionGets the description of this ScheduleFloatType instancestatic String[]Gets an array of all descriptions for this enumerationstatic String[]Gets an array of all internal values for this enumerationstatic ScheduleFloatTypegetScheduleFloatType(int iScheduleFloatType) Gets an instance of ScheduleFloatType based on the integer value specified.static ScheduleFloatTypegetScheduleFloatType(String sScheduleFloatType) Gets an instance of ScheduleFloatType based on the String value specified.getValue()Gets the internal value of this ScheduleFloatType instancetoString()Returns a string representation of the object, which is the same as the description returned by the getDescription() method
-
Field Details
-
NULL
-
START
-
FINISH
-
MINIMUM
-
-
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 ScheduleFloatType instance -
getDescription
Gets the description of this ScheduleFloatType instance- Specified by:
getDescriptionin classEnumType- Returns:
- String the description
-
getScheduleFloatType
Gets an instance of ScheduleFloatType based on the String value specified.- Parameters:
sScheduleFloatType- the internal value or description- Returns:
- ScheduleFloatType the unique ScheduleFloatType instance
-
getScheduleFloatType
Gets an instance of ScheduleFloatType based on the integer value specified.- Parameters:
iScheduleFloatType- an integer representing a particular value of this class. This value is also used when exporting to XML.- Returns:
- ScheduleFloatType the unique ScheduleFloatType 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
-