Navigation
API > API/Runtime > API/Runtime/Json > API/Runtime/Json/Dom
Inheritance Hierarchy
- FJsonValue
- FJsonValueString
References
| Module | Json |
| Header | /Engine/Source/Runtime/Json/Public/Dom/JsonValue.h |
| Include | #include "Dom/JsonValue.h" |
Syntax
class FJsonValueString : public FJsonValue
Remarks
A Json String Value.
Variables
| Type | Name | Description | |
|---|---|---|---|
| FString | Value |
Constructors
| Type | Name | Description | |
|---|---|---|---|
FJsonValueString
(
const FString& InString |
|||
FJsonValueString
(
FString&& InString |
Functions
| Type | Name | Description | |
|---|---|---|---|
| bool | IsEmpty () |
Way to check if string value is empty without copying the string. |
Overridden from FJsonValue
| Type | Name | Description | |
|---|---|---|---|
| FString | GetType () |
||
| 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
(
int32& 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
(
int64& 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 |