Enumeration

judo_token

Semantic element.

Since v1.0
enum judo_token {
    ...
}

Constants 🔗

JUDO_TOKEN_INVALID

Invalid token.

JUDO_TOKEN_NULL

Null literal.

JUDO_TOKEN_TRUE

True literal.

JUDO_TOKEN_FALSE

False literal.

JUDO_TOKEN_NUMBER

Numeric literal.

JUDO_TOKEN_STRING

String literal.

JUDO_TOKEN_ARRAY_BEGIN

Array start.

JUDO_TOKEN_ARRAY_END

Array end.

JUDO_TOKEN_OBJECT_BEGIN

Object start.

JUDO_TOKEN_OBJECT_END

Object end.

JUDO_TOKEN_OBJECT_NAME

Object member name.

JUDO_TOKEN_EOF

End-of-file.

Discussion 🔗

This enumeration represents a semantically important element within the JSON stream. They may or may not correspond with a primitive JSON token.