Interface CounterData
-
public interface CounterData
This interface represents one data point for one counter. It contains methods to get both the value associated with the data point and the timestamp of the data reading.- Since:
- MicroStrategy Web 7.5.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDataValue()
Returns the string representation of the last data point.java.util.Date
getTimeStamp()
Returns the time stamp which the data was taken at.
-
-
-
Method Detail
-
getTimeStamp
java.util.Date getTimeStamp()
Returns the time stamp which the data was taken at.- Returns:
- a java.util.Date object containing the timestamp of the data collection, or null if data has never been collected.
-
getDataValue
java.lang.String getDataValue()
Returns the string representation of the last data point.- Returns:
- The string representation of the last data point. This will be null if data has never been collected for this counter.
-
-