Interface IConditionDefinition

All Known Implementing Classes:
ConditionDefinition

public interface IConditionDefinition
This interface describes a condition definition for a data rule.
Since:
8.3
Author:
Jon van Leuven
  • Method Summary

    Modifier and Type
    Method
    Description
    This method returns the field name for the condition.
    This method returns the operator for the condition.
    This method returns the value expression for the condition.
  • Method Details

    • getValueExpression

      IExpression getValueExpression()
      This method returns the value expression for the condition.
      Returns:
      The value expression, never null.
    • getOperator

      Operator getOperator()
      This method returns the operator for the condition.
      Returns:
      The operator, never null.
    • getFieldName

      String getFieldName()
      This method returns the field name for the condition.
      Returns:
      The field name, never null.