Interface IConditionDS

All Known Implementing Classes:
ReportingDataRuleConditionDS, XmlConditionDS, XmlConditionDS

public interface IConditionDS
This interface defines the methods needed to initialize a condition for a data rule. A condition consists of a field, an operator and a value expression. Evaluation of a condition: [fieldName] [Operator] [ValueExpression]
Since:
8.3
Author:
Jon van Leuven
  • Method Summary

    Modifier and Type
    Method
    Description
    This method returns the name of the field.
    This method returns the operator that is used to compare the value expression to the field.
    This method returns the value expression.
  • Method Details

    • getFieldName

      String getFieldName()
      This method returns the name of the field.
      Returns:
      The name of the field, may not be null or empty.
    • getOperator

      Operator getOperator()
      This method returns the operator that is used to compare the value expression to the field.
      Returns:
      The operator of the condition, may not be null.
    • getValueExpression

      String getValueExpression()
      This method returns the value expression.
      Returns:
      The value expression of the condition, may not be null.