Value | Meaning |
---|---|
none | Used internally, never returned from the lexer |
error | Malformed token |
null_ | The "null" token |
boolean | "true" or "false" token |
number | Numeric token |
string | String token, stored in escaped form |
objectStart | The "{" token |
objectEnd | The "}" token |
arrayStart | The "[" token |
arrayEnd | The "]" token |
colon | The ":" token |
comma | The "," token |
Identifies the kind of a JSON token.