[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Class to represent floating-point JSON data.
Source position: fpjson.pp line 219
type TJSONFloatNumber = class(TJSONNumber) |
||
public |
||
constructor Create(); |
|
Create a new floating-point value. |
class function NumberType; override; |
|
Kind of numerical data managed by this class. |
procedure Clear; override; |
|
Clear value. |
function Clone; override; |
|
Clone floating point value. |
end; |
|
Class to represent floating-point JSON data. |
|
| | ||
|
Common ancestor for the numerical value JSON classes. |
|
| | ||
|
Base (abstract) object for all JSON based data types. |
|
| | ||
TObject |
TJSONFloatNumber must be used whenever floating point data must be represented. It can handle TJSONFloat data (normally a double). For integer data, TJSONIntegerNumber or TJSONInt64Number are better suited.
|
Common ancestor for the numerical value JSON classes. |
|
|
Float type used in JSON unit. |
|
|
Class to represent 32-bit integer JSON data. |
|
|
Class to represent 64-bit integer JSON data. |