Navigation
API > API/Runtime > API/Runtime/Json > API/Runtime/Json/Dom
Inheritance Hierarchy
- FJsonValue
- FJsonValueNumberString
References
| Module | Json |
| Header | /Engine/Source/Runtime/Json/Public/Dom/JsonValue.h |
| Include | #include "Dom/JsonValue.h" |
Syntax
class FJsonValueNumberString : public FJsonValue
Remarks
A Json Number Value, stored internally as a string so as not to lose precision
Variables
| Type | Name | Description | |
|---|---|---|---|
| FString | Value |
Constructors
| Type | Name | Description | |
|---|---|---|---|
FJsonValueNumberString
(
const FString& InString |
|||
FJsonValueNumberString
(
FString&& InString |
Overridden from FJsonValue
| Type | Name | Description | |
|---|---|---|---|
| FString | GetType () |
||
| bool | Returns whether or not a caller should prefer a string representation of the value, rather than the natural JSON type | ||
| bool | TryGetBool
(
bool& OutBool |
Tries to convert this value to a bool, returning false if not possible | |
| bool | TryGetNumber
(
double& OutNumber |
Tries to convert this value to a number, returning false if not possible | |
| bool | TryGetNumber
(
float& OutNumber |
Tries to convert this value to a number, returning false if not possible | |
| bool | TryGetNumber
(
int8& OutNumber |
Tries to convert this value to a number, returning false if not possible | |
| bool | TryGetNumber
(
int16& OutNumber |
Tries to convert this value to a number, returning false if not possible | |
| bool | TryGetNumber
(
int32& OutNumber |
Tries to convert this value to a number, returning false if not possible | |
| bool | TryGetNumber
(
int64& OutNumber |
Tries to convert this value to a number, returning false if not possible | |
| bool | TryGetNumber
(
uint8& OutNumber |
Tries to convert this value to a number, returning false if not possible | |
| bool | TryGetNumber
(
uint16& OutNumber |
Tries to convert this value to a number, returning false if not possible | |
| bool | TryGetNumber
(
uint32& OutNumber |
Tries to convert this value to a number, returning false if not possible | |
| bool | TryGetNumber
(
uint64& OutNumber |
Tries to convert this value to a number, returning false if not possible | |
| bool | TryGetString
(
FString& OutString |
Tries to convert this value to a string, returning false if not possible |