LexemeType
Identifies the category of a token produced when the Studio Explorer filter bar lexes a filter expression.
Items 19
| History | Name | Value | Description | |
|---|---|---|---|---|
| 644 | Eof | 0 | End-of-input token emitted when the lexer reaches the end of the filter string. | |
| 644 | Name | 1 | An unquoted identifier token, such as an instance name or property key in a filter expression. | |
| 644 | QuotedString | 2 | A string literal token delimited by single ( | |
| 644 | Number | 3 | A numeric literal token representing an integer or decimal value used in a comparison. | |
| 644 | And | 4 | The case-insensitive keyword | |
| 644 | Or | 5 | The case-insensitive keyword | |
| 644 | Equal | 6 | The equality comparison operator, matched as | |
| 644 | TildeEqual | 7 | The not-equal comparison operator ( | |
| 644 | GreaterThan | 8 | The greater-than comparison operator ( | |
| 644 | GreaterThanEqual | 9 | The greater-than-or-equal comparison operator ( | |
| 644 | LessThan | 10 | The less-than comparison operator ( | |
| 644 | LessThanEqual | 11 | The less-than-or-equal comparison operator ( | |
| 644 | Colon | 12 | The colon character ( | |
| 644 | Dot | 13 | The dot character ( | |
| 644 | LeftParenthesis | 14 | The opening parenthesis character ( | |
| 644 | RightParenthesis | 15 | The closing parenthesis character ( | |
| 644 | Star | 16 | The single wildcard character ( | |
| 644 | DoubleStar | 17 | The double wildcard token ( | |
| 644 | ReservedSpecial | 18 | A character that is syntactically recognized but has no defined meaning in the current filter grammar. |
Description
Studio-only Explorer filter lexer token kinds — not used by experience scripts. Classifies each token produced while tokenizing text in the Studio Explorer filter search bar. The lexer assigns one of these categories to every token; the parser builds an expression tree that the filter evaluates against the Explorer hierarchy.
History 20
- 644 Add TildeEqual
- 644 Add Star
- 644 Add RightParenthesis
- 644 Add ReservedSpecial
- 644 Add QuotedString
- 644 Add Or
- 644 Add Number
- 644 Add Name
- 644 Add LessThanEqual
- 644 Add LessThan
- 644 Add LeftParenthesis
- 644 Add GreaterThanEqual
- 644 Add GreaterThan
- 644 Add Equal
- 644 Add Eof
- 644 Add DoubleStar
- 644 Add Dot
- 644 Add Colon
- 644 Add And
- 644 Add LexemeType