LogicalOperator includes the following enumeration types:

  • LO_NOT, which indicates NOT.

  • LO_AND, which indicates AND.

  • LO_OR, which indicates OR.

Enumeration value list

enum LogicalOperator {
    LO_NOT                      = 1;
    LO_AND                      = 2;
    LO_OR                        = 3;
}