Package com.polarion.alm.tracker.model
Interface IPlanStatistics
- All Superinterfaces:
Serializable
This class provides simple access to plan a basic statistics.
All calculations (access to database) are done during creation of a class instance,
so all the methods from the class just return cached values.
Only resolvable items are used.
- Since:
- 3.8.0
-
Method Details
-
done
float done() -
todo
float todo() -
numberOfResolved
int numberOfResolved() -
numberOfUnresolved
int numberOfUnresolved() -
doneAsString
-
todoAsString
-
planned
float planned()planned == done+todo -
numberOfPlanned
int numberOfPlanned() -
plannedAsString
-
asString
-
idealProgress
float idealProgress()Returns ideal progress. Value is 0 before plan's start date and equals value of planned work for plan's end day an later. Progress value is based on number of working days. -
idealProgressAsString
-
progress
float progress()done/planned -
progressAsString
Return progress value as integer '%' sign. For example: 11 %
-