BizVR to DMN Comparison Mapping - Gnorion/BizVR GitHub Wiki
Same in DMN and BizVR
Name | Operator | Example | Description |
---|---|---|---|
Equal | = | "Steak" | Test that the input value is equal to the given value. |
Less | < | < 10 | Test that the input value is less than the given value. |
Less or Equal | <= | <= 10 | Test that the input value is less than or equal to the given value. |
Greater | > | > 10 | Test that the input value is greater than the given value. |
Greater or Equal | >= | >= 10 | Test that the input value is greater than or equal to the given value. |
Not Equal | not | not(10) | Test if the input value is not the given value. |
Comparison FEEL simple unary tests support the following comparison operators. Please note that the equals operator is optional. Also, a non equal operator such as != does not exist. To express this, negation has to be used.