Interface CountSummary


  • public interface CountSummary
    The interface CountSummary along with the interface CountInfo 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 the CountInfo object at the given 0-based index
      int 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 child CountInfo 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 as getCount().
        Returns:
        the unique count of items.
      • size

        int size()
        Returns the number of child CountInfo objects that this object contains.
        Returns:
        the number of child CountInfo objects.
      • get

        CountInfo get​(int i)
        Returns the CountInfo object at the given 0-based index
        Parameters:
        i - the index of the CountInfo object.
        Returns:
        the CountInfo at the specified position.