ConditionType
Condition types enumeration.
Name | Description | Value |
---|---|---|
CONDITION_TYPE_UNINITIALIZED | Uninitialized. | 0 |
CONDITION_TYPE_EQUAL | Must be equal to. | 1 |
CONDITION_TYPE_NOT_EQUAL | Must be not equal to. | 2 |
CONDITION_TYPE_GREATER_THAN | Must be greater than (_). | 3 |
CONDITION_TYPE_LESS_THAN | Must be less than (_). | 4 |
CONDITION_TYPE_GREATER_THAN_OR_EQUAL | Must be greater than or equal to (_=). | 5 |
CONDITION_TYPE_LESS_THAN_OR_EQUAL | Must be less than or equal to (_=). | 6 |
CONDITION_TYPE_CONTAINS | Contains the given text string (similar to LIKE '%xyz%'). | 7 |
CONDITION_TYPE_DOES_NOT_CONTAIN | Does not contain the given text string (similar to NOT LIKE '%xyz%'). | 8 |
CONDITION_TYPE_STARTS_WITH | Starts with the given text string (similar to LIKE 'xyz%'). | 9 |
CONDITION_TYPE_DOES_NOT_START_WITH | Does not start with the given text string (similar to NOT LIKE 'xyz%'). | 10 |
CONDITION_TYPE_MATCHES_WILDCARD_PATTERN | Matches the given DOS-style wildcard pattern (such as '*.txt'). | 11 |
CONDITION_TYPE_DOES_NOT_MATCH_WILDCARD_PATTERN | Does not match the given DOS-style wildcard pattern (such as '*.txt'). | 12 |
CONDITION_TYPE_IS_MISSING | Is missing? | 13 |
CONDITION_TYPE_IS_NOT_MISSING | Is not missing? | 14 |
CONDITION_TYPE_STARTS_WITH_AT_WORD_BOUNDARY | Starts with the given text string at a word boundary (similar to LIKE 'xyz%', but evaluated at each word beginning). | 15 |
CONDITION_TYPE_CONTAINS_ANY_BITWISE | Contains any of the bits of the given number. Treats its operands as a vector of bits rather than a single number. | 16 |
CONDITION_TYPE_DOES_NOT_CONTAIN_ANY_BITWISE | Does not contain any of the bits of the given number. Treats its operands as a vector of bits rather than a single number. | 17 |
CONDITION_TYPE_MATCHES_ALL | Full-text search matching all search terms. | 18 |
CONDITION_TYPE_MATCHES_ANY | Full-text search matching any search term. | 19 |
CONDITION_TYPE_MATCHES_BOOLEAN | Full-text search matching a Boolean statement. | 20 |