|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
This interface represents report of the current values of a measurement job.
An external system may for some reason be interested in the current values of the measurement job for example tracing the increment of some of the counters. The requested result report of the current values of the measurement job is represented by this interface. The current measurement result can be represented in two ways that the sever decide. The two ways are:
Method Summary | |
java.lang.Object |
clone()
Deep copy of this CurrentResultReport. |
ReportData |
getReportData()
Gets data for the current measurement result report. |
ReportInfo |
getReportInformation()
Gets information about the current measurement result report. |
boolean |
isDataType()
Indicates if the current measurement result is of data type. |
boolean |
isURLType()
Indicates if the current measurement result is of URL type. |
Methods inherited from interface com.sun.management.oss.SerializerFactory |
getSupportedSerializerTypes, makeSerializer |
Method Detail |
public java.lang.Object clone()
public boolean isURLType()
If this operation returns true, then the location of current measurement result
can be retrived by calling the getReportInformation()
operation.
public boolean isDataType()
If this operation returns true, then the current measurement result can be
retrived by calling the getReportData()
operation.
public ReportInfo getReportInformation() throws java.lang.IllegalStateException
The current measurement result report information contains all information that is needed to retrieve the current measurement report data.
java.lang.IllegalStateException
- Is raised if isURLType() == false
.public ReportData getReportData() throws java.lang.IllegalStateException
java.lang.IllegalStateException
- Is raised if isDataType() == false
.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |