Check out example codes for "C# .net core convert string to enum". It will help you in understanding the concepts better.
Code Example 1
var foo = (YourEnum) Enum.Parse(typeof(YourEnum), yourString);
if (Enum.IsDefined(typeof(YourEnum), foo))
{
return foo;
}
Learn ReactJs, React Native from akashmittal.com