|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.ace.mws.reports.Datapoint
class Datapoint
A metric that measures system state over a specified period of time. For example, a datapoint may contain data on CPU utilization by specific users. A datapoint is generated by the consolidation of zero or more Samples. It could be said that a datapoint represents a smoothing of samples.
Field Summary | |
---|---|
private Map |
data
(Map of String => String) The actual consolidated sample data. |
private Date |
endDate
The ending date that the datapoint covers. |
private Date |
firstSampleDate
The date of the first sample consolidated in this datapoint. |
private Long |
id
|
private Date |
lastSampleDate
The date of the last sample consolidated in this datapoint. |
private Date |
startDate
The beginning date that the datapoint covers. |
Constructor Summary | |
Datapoint()
|
Method Summary | |
---|---|
Map
|
getData()
(Map of String => String) The actual consolidated sample data. |
Date
|
getEndDate()
The ending date that the datapoint covers. |
Date
|
getFirstSampleDate()
The date of the first sample consolidated in this datapoint. |
Long
|
getId()
|
Date
|
getLastSampleDate()
The date of the last sample consolidated in this datapoint. |
Date
|
getStartDate()
The beginning date that the datapoint covers. |
void
|
setData(Map data)
(Map of String => String) The actual consolidated sample data. |
void
|
setEndDate(Date endDate)
The ending date that the datapoint covers. |
void
|
setFirstSampleDate(Date firstSampleDate)
The date of the first sample consolidated in this datapoint. |
void
|
setId(Long id)
|
void
|
setLastSampleDate(Date lastSampleDate)
The date of the last sample consolidated in this datapoint. |
void
|
setStartDate(Date startDate)
The beginning date that the datapoint covers. |
String
|
toString()
|
Methods inherited from class Object | |
---|---|
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Field Detail |
---|
private Map data
private Date endDate
private Date firstSampleDate
private Long id
private Date lastSampleDate
private Date startDate
Constructor Detail |
---|
Datapoint()
Method Detail |
---|
Map getData()
Date getEndDate()
Date getFirstSampleDate()
Long getId()
Date getLastSampleDate()
Date getStartDate()
void setData(Map data)
void setEndDate(Date endDate)
void setFirstSampleDate(Date firstSampleDate)
void setId(Long id)
void setLastSampleDate(Date lastSampleDate)
void setStartDate(Date startDate)
String toString()
Groovy Documentation