| [Overview][Constants][Types][Classes][Procedures and functions][Index] | 
Type of instance to create
Source position: fpjson.pp line 34
type TJSONInstanceType = (  | 
||
jitUnknown,  | 
  | 
Unknown  | 
jitNumberInteger,  | 
  | 
32-bit signed integer number value  | 
jitNumberInt64,  | 
  | 
64-bit signed integer number value  | 
jitNumberQWord,  | 
  | 
Qword integer number type  | 
jitNumberFloat,  | 
  | 
Floating point real number value  | 
jitString,  | 
  | 
String value  | 
jitBoolean,  | 
  | 
Boolean value  | 
jitNull,  | 
  | 
Null value  | 
jitArray,  | 
  | 
Array value  | 
jitObject  | 
  | 
Object value  | 
);  | 
TJSONInstanceType is used by the parser to determine what kind of TJSONData descendent to create for a particular data item. It is a more fine-grained division than TJSONType
  | 
Base (abstract) object for all JSON based data types  | 
|
  | 
Possible types of JSON data  |