The ADSComparisonOperatorEnum enumeration encapsulates the comparison operators used to evaluate a program's exit code.
Enumeration |
Value |
Description |
compLT |
0 |
< (less than) |
compLE |
1 |
<= (less than or equal to) |
compEQ |
2 |
= (equal to) |
compNE |
3 |
<> (not equal to) |
compGE |
4 |
>= (greater than or equal to) |
compGT |
5 |
> (greater than) |