Interface CountSummary
-
public interface CountSummaryThe interfaceCountSummaryalong with the interfaceCountInfoare used to to retrieve count-related information about a monitor information request.- Since:
- MicroStrategy Web 9.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CountInfoget(int i)Returns theCountInfoobject at the given 0-based indexintgetCount()Returns the total count of items returned from the Intelligence Server.intgetUniqueCount()Returns the unique count of items.intsize()Returns the number of childCountInfoobjects that this object contains.
-
-
-
Method Detail
-
getCount
int getCount()
Returns the total count of items returned from the Intelligence Server.- Returns:
- the total count of items returned from the Intelligence Server.
-
getUniqueCount
int getUniqueCount()
Returns the unique count of items. If a unique count makes no sense for some types of monitoring, it simply returns the same value asgetCount().- Returns:
- the unique count of items.
-
size
int size()
Returns the number of childCountInfoobjects that this object contains.- Returns:
- the number of child
CountInfoobjects.
-
get
CountInfo get(int i)
Returns theCountInfoobject at the given 0-based index- Parameters:
i- the index of theCountInfoobject.- Returns:
- the
CountInfoat the specified position.
-
-