Interface CountSummary
-
public interface CountSummary
The interfaceCountSummary
along with the interfaceCountInfo
are 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 CountInfo
get(int i)
Returns theCountInfo
object at the given 0-based indexint
getCount()
Returns the total count of items returned from the Intelligence Server.int
getUniqueCount()
Returns the unique count of items.int
size()
Returns the number of childCountInfo
objects 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 childCountInfo
objects that this object contains.- Returns:
- the number of child
CountInfo
objects.
-
get
CountInfo get(int i)
Returns theCountInfo
object at the given 0-based index- Parameters:
i
- the index of theCountInfo
object.- Returns:
- the
CountInfo
at the specified position.
-
-