20 lines
565 B
C#
20 lines
565 B
C#
using QFSW.QC.Utilities;
|
|
using System;
|
|
|
|
namespace QFSW.QC.Parsers
|
|
{
|
|
public class EnumParser : PolymorphicCachedQcParser<Enum>
|
|
{
|
|
public override Enum Parse(string value, Type type)
|
|
{
|
|
try
|
|
{
|
|
return (Enum)Enum.Parse(type, value);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
throw new ParserInputException($"Cannot parse '{value}' to the type '{type.GetDisplayName()}'. To see the supported values, use the command `enum-info {type}`", e);
|
|
}
|
|
}
|
|
}
|
|
} |