Navigation
API > API/Plugins > API/Plugins/JsonSerialization
| Name | FJsonArchiveInputFormatterEx |
| Type | class |
| Header File | /Engine/Plugins/Experimental/SerializationUtils/Source/JsonSerialization/Public/Formatters/JsonArchiveInputFormatterEx.h |
| Include Path | #include "Formatters/JsonArchiveInputFormatterEx.h" |
Syntax
class FJsonArchiveInputFormatterEx : public FStructuredArchiveFormatter
Inheritance Hierarchy
- FStructuredArchiveFormatter → FJsonArchiveInputFormatterEx
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FJsonArchiveInputFormatterEx
(
FArchive& InInner, |
Formatters/JsonArchiveInputFormatterEx.h |
Destructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual ~FJsonArchiveInputFormatterEx() |
Formatters/JsonArchiveInputFormatterEx.h |
Structs
| Name | Remarks |
|---|---|
| FObjectRecord |
Variables
Protected
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| ArrayValuesRemainingStack | TArray< int32 > | Formatters/JsonArchiveInputFormatterEx.h | ||
| Inner | FArchive & | Formatters/JsonArchiveInputFormatterEx.h | ||
| MapIteratorStack | TArray< TMap< FString, TSharedPtr< FJsonValue > >::TIterator > | Formatters/JsonArchiveInputFormatterEx.h | ||
| ObjectStack | TArray< FObjectRecord > | Formatters/JsonArchiveInputFormatterEx.h | ||
| ResolveObject | TFunction< UObject *(const FPackageIndex)> | Formatters/JsonArchiveInputFormatterEx.h | ||
| RootObject | UObject * | Formatters/JsonArchiveInputFormatterEx.h | ||
| ValueStack | TArray< TSharedPtr< FJsonValue > > | Formatters/JsonArchiveInputFormatterEx.h |
Functions
Public
Overridden from FStructuredArchiveFormatter
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual FStructuredArchiveFormatter * CreateSubtreeReader() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void EnterArray
(
int32& NumElements |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void EnterArrayElement() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void EnterAttribute
(
FArchiveFieldName AttributeName |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void EnterAttributedValue() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void EnterAttributedValueValue() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void EnterField
(
FArchiveFieldName Name |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void EnterMap
(
int32& NumElements |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void EnterMapElement
(
FString& Name |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void EnterRecord() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void EnterStream() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void EnterStreamElement() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual FArchive & GetUnderlyingArchive() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual bool HasDocumentTree() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void LeaveArray() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void LeaveArrayElement() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void LeaveAttribute() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void LeaveAttributedValue() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void LeaveField() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void LeaveMap() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void LeaveMapElement() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void LeaveRecord() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void LeaveStream() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void LeaveStreamElement() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void Serialize
(
FObjectPtr& Value |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void Serialize
(
FLazyObjectPtr& Value |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void Serialize
(
FSoftObjectPath& Value |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void Serialize
(
FSoftObjectPtr& Value |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void Serialize
(
FWeakObjectPtr& Value |
Formatters/JsonArchiveInputFormatterEx.h | ||
| Formatters/JsonArchiveInputFormatterEx.h | |||
| Formatters/JsonArchiveInputFormatterEx.h | |||
| Formatters/JsonArchiveInputFormatterEx.h | |||
| Formatters/JsonArchiveInputFormatterEx.h | |||
virtual void Serialize
(
UTF32CHAR& Value |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void Serialize
(
bool& Value |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void Serialize
(
double& Value |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void Serialize
(
float& Value |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void Serialize
(
int64& Value |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void Serialize
(
int32& Value |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void Serialize
(
int16& Value |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void Serialize
(
int8& Value |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void Serialize
(
uint64& Value |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void Serialize
(
uint32& Value |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void Serialize
(
uint16& Value |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual void Serialize
(
uint8& Value |
Formatters/JsonArchiveInputFormatterEx.h | ||
| Formatters/JsonArchiveInputFormatterEx.h | |||
virtual void Serialize
(
void* Data, |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual bool TryEnterAttribute
(
FArchiveFieldName AttributeName, |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual bool TryEnterAttributedValueValue() |
Formatters/JsonArchiveInputFormatterEx.h | ||
virtual bool TryEnterField
(
FArchiveFieldName Name, |
Formatters/JsonArchiveInputFormatterEx.h |
Static
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static FString EscapeFieldName
(
const TCHAR* Name |
Formatters/JsonArchiveInputFormatterEx.h | ||
static EArchiveValueType GetValueType
(
const FJsonValue& Value |
Formatters/JsonArchiveInputFormatterEx.h | ||
static FString UnescapeFieldName
(
const TCHAR* Name |
Formatters/JsonArchiveInputFormatterEx.h |