OperatorType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Operator Types
public enum OperatorType
type OperatorType =
Public Enum OperatorType
- Inheritance
-
OperatorType
Fields
| Name | Value | Description |
|---|---|---|
| NONE | 0 | Default type to use when the type should be initialized before it is known |
| AND | 1 | Logical AND |
| OR | 2 | Logical OR |
| EQ | 3 | Equals |
| NE | 4 | Not equals |
| LT | 5 | Less than |
| GT | 6 | Greater than |
| LE | 7 | Less or equal to |
| GE | 8 | Greater of equal to |
| IN | 9 | Equals to one of list items |
| LIKE | 10 | Matches a string pattern |
| NOT_IN | 11 | Reversed IN |
| NOT_LIKE | 12 | Reversed LIKE |
| BEQ | 13 | Bitwise equals |
| BNE | 14 | Bitwise not equals |