Skip to main content

ConditionType

Condition types enumeration.

NameDescriptionValue
CONDITION_TYPE_UNINITIALIZEDUninitialized.0
CONDITION_TYPE_EQUALMust be equal to.1
CONDITION_TYPE_NOT_EQUALMust be not equal to.2
CONDITION_TYPE_GREATER_THANMust be greater than (_).3
CONDITION_TYPE_LESS_THANMust be less than (_).4
CONDITION_TYPE_GREATER_THAN_OR_EQUALMust be greater than or equal to (_=).5
CONDITION_TYPE_LESS_THAN_OR_EQUALMust be less than or equal to (_=).6
CONDITION_TYPE_CONTAINSContains the given text string (similar to LIKE '%xyz%').7
CONDITION_TYPE_DOES_NOT_CONTAINDoes not contain the given text string (similar to NOT LIKE '%xyz%').8
CONDITION_TYPE_STARTS_WITHStarts with the given text string (similar to LIKE 'xyz%').9
CONDITION_TYPE_DOES_NOT_START_WITHDoes not start with the given text string (similar to NOT LIKE 'xyz%').10
CONDITION_TYPE_MATCHES_WILDCARD_PATTERNMatches the given DOS-style wildcard pattern (such as '*.txt').11
CONDITION_TYPE_DOES_NOT_MATCH_WILDCARD_PATTERNDoes not match the given DOS-style wildcard pattern (such as '*.txt').12
CONDITION_TYPE_IS_MISSINGIs missing?13
CONDITION_TYPE_IS_NOT_MISSINGIs not missing?14
CONDITION_TYPE_STARTS_WITH_AT_WORD_BOUNDARYStarts with the given text string at a word boundary (similar to LIKE 'xyz%', but evaluated at each word beginning).15
CONDITION_TYPE_CONTAINS_ANY_BITWISEContains 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_BITWISEDoes 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_ALLFull-text search matching all search terms.18
CONDITION_TYPE_MATCHES_ANYFull-text search matching any search term.19
CONDITION_TYPE_MATCHES_BOOLEANFull-text search matching a Boolean statement.20