Interface MonitorFilterCondition


  • public interface MonitorFilterCondition
    The interface MonitorFilterCondition represents a filter condition used in monitoring.
    Since:
    MicroStrategy Web 9.0.0
    • Method Detail

      • getOperator

        int getOperator()
        Returns the operator of the condition, a value from EnumDSSXMLMonitorFilterOperator.
        Returns:
        the operator of the condition.
      • getValue

        java.lang.String getValue()
        Returns a comma-separated list of values.
        Returns:
        a comma-separated list of values.
      • getValues

        java.lang.String[] getValues()
        Returns an array of values.
        Returns:
        an array of values.
      • setOperator

        void setOperator​(int operator)
        Sets the operator of the condition, a value from EnumDSSXMLMonitorFilterOperator.
        Parameters:
        operator - the operator of the condition
      • setValue

        void setValue​(java.lang.String value)
        Sets a single value. Any value previously set will be discarded.
        Parameters:
        value - a single value
      • setValues

        void setValues​(java.lang.String[] value)
        Sets an array of values. Any value previously set will be discarded.
        Parameters:
        value - an array of values.