TJSONParserToken Enumeration

Represents type TJSONParserToken.

Namespace: flcJSON
type
 TJSONParserToken = (
 jptNone,
 jptEOF,
 jptWhiteSpace,
 jptLeftSquare,
 jptRightSquare,
 jptLeftCurly,
 jptRightCurly,
 jptColon,
 jptComma,
 jptTrue,
 jptFalse,
 jptNull,
 jptInteger,
 jptFloat,
 jptSciFloat,
 jptString
 );

The TJSONParserToken type exposes the following members.

Show:
 NameDescription
jptColon

Represents constant jptColon.

jptComma

Represents constant jptComma.

jptEOF

Represents constant jptEOF.

jptFalse

Represents constant jptFalse.

jptFloat

Represents constant jptFloat.

jptInteger

Represents constant jptInteger.

jptLeftCurly

Represents constant jptLeftCurly.

jptLeftSquare

Represents constant jptLeftSquare.

jptNone

Represents constant jptNone.

jptNull

Represents constant jptNull.

jptRightCurly

Represents constant jptRightCurly.

jptRightSquare

Represents constant jptRightSquare.

jptSciFloat

Represents constant jptSciFloat.

jptString

Represents constant jptString.

jptTrue

Represents constant jptTrue.

jptWhiteSpace

Represents constant jptWhiteSpace.

Top