[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Common ancestor for the numerical value JSON classes.
Source position: fpjson.pp line 222
| type TJSONNumber = class(TJSONData) | ||
| public | ||
| class function JSONType; override; | 
 | native JSON data type. | 
| class function NumberType; virtual; abstract; | 
 | Kind of numerical data managed by this class. | 
| end; | 
| 
 | Common ancestor for the numerical value JSON classes. | |
| | | ||
| 
 | Base (abstract) object for all JSON based data types. | |
| | | ||
TJSONNumber is an abstract class which serves as the ancestor for the 3 numerical classes. It should never be instantiated directly. Instead, depending on the kind of data, one of TJSONIntegerNumber, TJSONInt64Number or TJSONFloatNumber should be instantiated.
| 
 | Class to represent 32-bit integer JSON data. | |
| 
 | Class to represent 64-bit integer JSON data. | |
| 
 | Class to represent floating-point JSON data. |