Choose your operating system:
Windows
macOS
Linux
Module |
|
Header |
/Engine/Source/Runtime/JsonUtilities/Public/JsonObjectConverter.h |
Include |
#include "JsonObjectConverter.h" |
class FJsonObjectConverter
Class that handles converting Json objects to and from UStructs
Name | Description | ||
---|---|---|---|
|
GetTextFromField ( |
Convert a Json value to text (takes some hints from the value name) |
|
|
GetTextFromObject ( |
Parse an FText from a json object (assumed to be of the form where keys are culture codes and values are strings) |
|
|
JsonArrayStringToUStruct |
Converts from a json string containing an array to an array of UStructs |
|
|
JsonArrayToUStruct |
Converts from an array of json values to an array of UStructs. |
|
|
JsonAttributesToUStruct |
Converts a set of json attributes (possibly from within a JsonObject) to a UStruct, using importText |
|
|
JsonObjectStringToUStruct |
Converts from a json string containing an object to a UStruct |
|
|
JsonObjectToUStruct ( |
Converts from a Json Object to a UStruct, using importText |
|
|
JsonObjectToUStruct ( |
Templated version of JsonObjectToUStruct |
|
|
JsonValueToUProperty ( |
Converts a single JsonValue to the corresponding FProperty (this may recurse if the property is a UStruct for instance). |
|
|
FFormatNamed... |
ParseTextArgumentsFromJson ( |
Parses text arguments from Json into a map |
|
StandardizeCase ( |
FName case insensitivity can make the casing of UPROPERTIES unpredictable. |
|
|
TSharedPtr< ... |
UPropertyToJsonValue |
|
|
UStructToFormattedJsonObjectString |
Wrapper to UStructToJsonObjectString that allows a print policy to be specified. |
|
|
UStructToJsonAttributes ( |
Converts from a UStruct to a set of json attributes (possibly from within a JsonObject) |
|
|
TSharedPtr< ... |
UStructToJsonObject ( |
Templated version of UStructToJsonObject to try and make most of the params. |
|
UStructToJsonObject ( |
Converts from a UStruct to a Json Object, using exportText |
|
|
UStructToJsonObjectString |
Templated version; Converts from a UStruct to a json string containing an object, using exportText |
|
|
UStructToJsonObjectString |
Converts from a UStruct to a json string containing an object, using exportText |
Name |
Description |
---|---|
CustomExportCallback |
Optional callback that will be run when exporting a single property to Json. |
Name | Description | ||
---|---|---|---|
|
TSharedPtr< ... |
ObjectJsonCallback |
ObjectJsonCallback has been deprecated - please remove the usage of it from your project |