|
| static JSON_API bool | GetValueFromState (const StackState &State, FValue &OutValue) |
| |
| static JSON_API bool | GetValueFromState (const StackState &State, FArrayOfValues &OutArray) |
| |
| static JSON_API bool | GetValueFromState (const StackState &State, FMapOfValues &OutMap) |
| |
| static JSON_API void | ResetValue (FValue &OutValue) |
| |
| static JSON_API void | ReadObjectStart (StackState &State) |
| |
| static JSON_API void | ReadObjectEnd (StackState &State, FValue &OutValue) |
| |
| static JSON_API void | ReadArrayStart (StackState &State) |
| |
| static JSON_API void | ReadArrayEnd (StackState &State, FValue &OutValue) |
| |
| template<class CharType > |
| static void | ReadBoolean (TJsonReader< CharType > &Reader, FValue &OutValue) |
| |
| template<class CharType > |
| static void | ReadString (TJsonReader< CharType > &Reader, FValue &OutValue) |
| |
| template<class CharType > |
| static void | ReadNumberAsString (TJsonReader< CharType > &Reader, FValue &OutValue) |
| |
| template<class CharType > |
| static void | ReadNumber (TJsonReader< CharType > &Reader, FValue &OutValue) |
| |
| static JSON_API void | ReadNull (FValue &OutValue) |
| |
| static JSON_API void | AddValueToObject (StackState &State, const FString &Identifier, FValue &NewValue) |
| |
| static JSON_API void | AddValueToArray (StackState &State, FValue &NewValue) |
| |
| template<class CharType , class PrintPolicy > |
| static bool | SerializeIfBool (TSharedRef< FElement > &Element, TJsonWriter< CharType, PrintPolicy > &Writer, bool bWriteValueOnly) |
| |
| template<class CharType , class PrintPolicy > |
| static bool | SerializeIfNumber (TSharedRef< FElement > &Element, TJsonWriter< CharType, PrintPolicy > &Writer, bool bWriteValueOnly) |
| |
| template<class CharType , class PrintPolicy > |
| static bool | SerializeIfString (TSharedRef< FElement > &Element, TJsonWriter< CharType, PrintPolicy > &Writer, bool bWriteValueOnly) |
| |
| template<class CharType , class PrintPolicy > |
| static bool | SerializeIfNull (TSharedRef< FElement > &Element, TJsonWriter< CharType, PrintPolicy > &Writer, bool bWriteValueOnly) |
| |
| template<class CharType , class PrintPolicy > |
| static bool | SerializeIfArray (TArray< TSharedRef< FElement > > &ElementStack, TSharedRef< FElement > &Element, TJsonWriter< CharType, PrintPolicy > &Writer, bool bWriteValueOnly) |
| |
| template<class CharType , class PrintPolicy > |
| static bool | SerializeIfObject (TArray< TSharedRef< FElement > > &ElementStack, TSharedRef< FElement > &Element, TJsonWriter< CharType, PrintPolicy > &Writer, bool bWriteValueOnly) |
| |