TJSONValueType Enumeration

Represents type TJSONValueType.

Namespace: flcJSON
type
 TJSONValueType = (
 jvtString,
 jvtInteger,
 jvtFloat,
 jvtBoolean,
 jvtNull,
 jvtArray,
 jvtObject
 );

The TJSONValueType type exposes the following members.

Show:
 NameDescription
jvtArray

Represents constant jvtArray.

jvtBoolean

Represents constant jvtBoolean.

jvtFloat

Represents constant jvtFloat.

jvtInteger

Represents constant jvtInteger.

jvtNull

Represents constant jvtNull.

jvtObject

Represents constant jvtObject.

jvtString

Represents constant jvtString.

Top