Logical Operators
Logical operators control how individual conditions are combined and evaluated
within a ZeroTrain rule.
These operators determine whether grouped conditions pass, fail, or influence
rule selection behavior.
ZeroTrainLogicalOperator
List of ZeroTrainLogicalOperator
| Name | Description |
| AND | All conditions must evaluate to true for the group to pass. |
| OR | At least one condition must evaluate to true for the group to pass. |
| XOR | Exactly one condition must evaluate to true for the group to pass. |
| MUST | Mandatory condition. If this evaluation fails, the entire rule fails immediately. |
| STOP | Stops further evaluation after this condition is processed. |
| PICK | If satisfied, selects this row and excludes all other candidate rows. |
| BLOCK | Prevents this row from being considered if the condition evaluates to true. |