Interface CounterData
- 
 public interface CounterDataThis 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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDataValue()Returns the string representation of the last data point.java.util.DategetTimeStamp()Returns the time stamp which the data was taken at.
 
- 
- 
- 
Method Detail- 
getTimeStampjava.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.
 
 - 
getDataValuejava.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.
 
 
- 
 
-