class documentation
class TokenKind(Enum): (source)
Lexical category of a token produced by the tokenizer.
| Constant | KEYWORD |
A reserved keyword token, e.g. EQ, NE, GT, LT, GE, LE, MATCH, AND, OR. |
| Constant | LITERAL |
A literal value token, e.g. a number or a double-quoted string. |
| Constant | PATH |
A path expression token, e.g. "$.foo[2].bar" or "$.'a.b'[0]". |