ComparisonOperator

  • Supported comparison operators include equal, greater than, less than, greater than or equal to, and less than or equal to.

  • These operators are used to compare values within data, allowing for filtering and conditional logic.

  • Each operator is represented by a specific enum value for use in code and configurations.

  • An UNSPECIFIED enum exists for unknown or undefined comparison operations.

Available comparison operators.

Enums
COMPARISON_OPERATOR_UNSPECIFIED Unknown operator.
EQUAL Values are equal.
GREATER_THAN Signal value is greater than the comparison value.
LESS_THAN Signal value is less than the second.
GREATER_THAN_OR_EQUAL_TO Signal value is greater than or equal to the second.
LESS_THAN_OR_EQUAL_TO Signal value is less than or equal to the comparison value.