[]
Token ID (used when evaluating expressions)
public enum TKID
Name | Description |
---|---|
ADD | Add. |
AND | Conditional logical AND operator. |
ATOM | Literal, Identifier |
BAND | Logical AND operator. |
BOR | Logical OR operator. |
CLOSE | Close group, example: ')' |
COMMA | Splitter of the arguments list. |
CONCAT | Concatenation. |
DIV | Division. |
DIVINT | Division for int. |
DOT | Splitter of the sub-properties. |
END | End of expression. |
EQ | Equal. |
GE | Greater or equal than. |
GT | Greater than. |
IN | In. |
LE | Less or equal than. |
LIKE | Like. |
LT | Less than. |
MOD | Modulus. |
MUL | Multiply. |
NE | Not equal. |
NOT | Not. |
OPEN | Open group, example: '(' |
OR | Conditional logical OR operator. |
SUB | Subtract. |
XOR | Logical exclusive OR operator. |