28 static bool Trim(
int32& Pos,
const FString& Source);
31 static const TCHAR* StartOf(
const FString& Source);
34 static const TCHAR* EndOf(
const FString& Source);
46 static bool IsStringValidFloat(
const TCHAR* Start,
const TCHAR*
End);
50 static bool IsStringValidInteger(
const TCHAR* Start,
const TCHAR*
End);
76 static CORE_API bool IsStringValidInteger(
const FString& Source);
78 static CORE_API bool IsStringValidFloat(
const FString& Source);
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
Definition DefaultValueHelper.h:18
static CORE_API bool ParseVector(const FString &Source, FVector3f &OutVal)
Definition DefaultValueHelper.cpp:432
static CORE_API bool ParseVector2D(const FString &Source, FVector2f &OutVal)
Definition DefaultValueHelper.cpp:491
static CORE_API bool ParseRotator(const FString &Source, FRotator3f &OutVal)
Definition DefaultValueHelper.cpp:567
static CORE_API bool GetParameters(const FString &Source, const FString &TypeName, FString &OutForm)
Definition DefaultValueHelper.cpp:130
static CORE_API bool ParseVector4(const FString &Source, FVector4f &OutVal)
Definition DefaultValueHelper.cpp:535
static CORE_API bool IsStringValidVector(const FString &Source)
Definition DefaultValueHelper.cpp:320
static CORE_API bool HasWhitespaces(const FString &Source)
Definition DefaultValueHelper.cpp:117
static CORE_API bool StringFromCppString(const FString &Source, const FString &TypeName, FString &OutForm)
Definition DefaultValueHelper.cpp:340
static CORE_API bool IsStringValidRotator(const FString &Source)
Definition DefaultValueHelper.cpp:327
static CORE_API bool ParseLinearColor(const FString &Source, FLinearColor &OutVal)
Definition DefaultValueHelper.cpp:697
static CORE_API bool ParseDouble(const FString &Source, double &OutVal)
Definition DefaultValueHelper.cpp:684
static CORE_API bool Is(const FString &Source, const TCHAR *CompareStr)
Definition DefaultValueHelper.cpp:16
static CORE_API bool ParseColor(const FString &Source, FColor &OutVal)
Definition DefaultValueHelper.cpp:745
static CORE_API bool IsStringValidLinearColor(const FString &Source)
Definition DefaultValueHelper.cpp:333
static CORE_API bool ParseFloat(const FString &Source, float &OutVal)
Definition DefaultValueHelper.cpp:671
static CORE_API bool ParseInt64(const FString &Source, int64 &OutVal)
Definition DefaultValueHelper.cpp:657
static CORE_API FString GetUnqualifiedEnumValue(const FString &Source)
Definition DefaultValueHelper.cpp:105
static CORE_API bool ParseInt(const FString &Source, int32 &OutVal)
Definition DefaultValueHelper.cpp:609
static CORE_API bool ParseBool(const FString &Source, bool &OutVal)
Definition DefaultValueHelper.cpp:622
static CORE_API FString RemoveWhitespaces(const FString &Source)
Definition DefaultValueHelper.cpp:41