我正在构建一个扩展Enum.Parse
概念
所以我写了以下内容:
public static T GetEnumFromString<T>(string value, T defaultValue) where T : Enum
{
if (string.IsNullOrEmpty(value)) return defaultValue;
foreach (T item in Enum.GetValues(typeof(T)))
{
if (item.ToString().ToLower().Equals(value.Trim().ToLower())) return item;
}
return defaultValue;
}
我收到错误约束不能是特殊类System.Enum
。
很公平,但是有一个解决方法允许Generic Enum,或者我将不得不模仿Parse
函数并将类型作为属性传递,这会迫使你的代码出现丑陋的拳击要求。
编辑以下所有建议都非常感谢,谢谢。
已经确定(我已经离开循环以保持不区分大小写 - 我在解析XML时使用它)
public static class EnumUtils
{
public static T ParseEnum<T>(string value, T defaultValue) where T : struct, IConvertible
{
if (!typeof(T).IsEnum) throw new ArgumentException("T must be an enumerated type");
if (string.IsNullOrEmpty(value)) return defaultValue;
foreach (T item in Enum.GetValues(typeof(T)))
{
if (item.ToString().ToLower().Equals(value.Trim().ToLower())) return item;
}
return defaultValue;
}
}
编辑:(2015年2月16日)Julien Lebosquain最近发布了a compiler enforced type-safe generic solution in MSIL or F#,这非常值得一看,也是一个赞成票。如果解决方案在页面上向上冒泡,我将删除此编辑。
答案 0 :(得分:933)
由于Enum
Type实现了IConvertible
接口,更好的实现应该是这样的:
public T GetEnumFromString<T>(string value) where T : struct, IConvertible
{
if (!typeof(T).IsEnum)
{
throw new ArgumentException("T must be an enumerated type");
}
//...
}
这仍然允许传递实现IConvertible
的值类型。但机会很少。
答案 1 :(得分:531)
以下代码段(来自the dotnet samples)演示了如何使用:
public static Dictionary<int, string> EnumNamedValues<T>() where T : System.Enum
{
var result = new Dictionary<int, string>();
var values = Enum.GetValues(typeof(T));
foreach (int item in values)
result.Add(item, Enum.GetName(typeof(T), item));
return result;
}
请务必在C#项目中将语言版本设置为7.3版。
以下原始答案:
我已经迟到了,但我把它作为挑战,看看它是如何完成的。在C#(或VB.NET中,但向下滚动F#)是不可能的,但在MSIL中是可能的。我写了这个小东西
// license: http://www.apache.org/licenses/LICENSE-2.0.html
.assembly MyThing{}
.class public abstract sealed MyThing.Thing
extends [mscorlib]System.Object
{
.method public static !!T GetEnumFromString<valuetype .ctor ([mscorlib]System.Enum) T>(string strValue,
!!T defaultValue) cil managed
{
.maxstack 2
.locals init ([0] !!T temp,
[1] !!T return_value,
[2] class [mscorlib]System.Collections.IEnumerator enumerator,
[3] class [mscorlib]System.IDisposable disposer)
// if(string.IsNullOrEmpty(strValue)) return defaultValue;
ldarg strValue
call bool [mscorlib]System.String::IsNullOrEmpty(string)
brfalse.s HASVALUE
br RETURNDEF // return default it empty
// foreach (T item in Enum.GetValues(typeof(T)))
HASVALUE:
// Enum.GetValues.GetEnumerator()
ldtoken !!T
call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
call class [mscorlib]System.Array [mscorlib]System.Enum::GetValues(class [mscorlib]System.Type)
callvirt instance class [mscorlib]System.Collections.IEnumerator [mscorlib]System.Array::GetEnumerator()
stloc enumerator
.try
{
CONDITION:
ldloc enumerator
callvirt instance bool [mscorlib]System.Collections.IEnumerator::MoveNext()
brfalse.s LEAVE
STATEMENTS:
// T item = (T)Enumerator.Current
ldloc enumerator
callvirt instance object [mscorlib]System.Collections.IEnumerator::get_Current()
unbox.any !!T
stloc temp
ldloca.s temp
constrained. !!T
// if (item.ToString().ToLower().Equals(value.Trim().ToLower())) return item;
callvirt instance string [mscorlib]System.Object::ToString()
callvirt instance string [mscorlib]System.String::ToLower()
ldarg strValue
callvirt instance string [mscorlib]System.String::Trim()
callvirt instance string [mscorlib]System.String::ToLower()
callvirt instance bool [mscorlib]System.String::Equals(string)
brfalse.s CONDITION
ldloc temp
stloc return_value
leave.s RETURNVAL
LEAVE:
leave.s RETURNDEF
}
finally
{
// ArrayList's Enumerator may or may not inherit from IDisposable
ldloc enumerator
isinst [mscorlib]System.IDisposable
stloc.s disposer
ldloc.s disposer
ldnull
ceq
brtrue.s LEAVEFINALLY
ldloc.s disposer
callvirt instance void [mscorlib]System.IDisposable::Dispose()
LEAVEFINALLY:
endfinally
}
RETURNDEF:
ldarg defaultValue
stloc return_value
RETURNVAL:
ldloc return_value
ret
}
}
如果它是有效的C#,那么会生成 看起来像这样的函数:
T GetEnumFromString<T>(string valueString, T defaultValue) where T : Enum
然后使用以下C#代码:
using MyThing;
// stuff...
private enum MyEnum { Yes, No, Okay }
static void Main(string[] args)
{
Thing.GetEnumFromString("No", MyEnum.Yes); // returns MyEnum.No
Thing.GetEnumFromString("Invalid", MyEnum.Okay); // returns MyEnum.Okay
Thing.GetEnumFromString("AnotherInvalid", 0); // compiler error, not an Enum
}
不幸的是,这意味着让您的代码的这一部分用MSIL而不是C#编写,唯一的好处是您可以通过System.Enum
约束此方法。这也是一种无赖,因为它被编译成一个单独的程序集。但是,这并不意味着您必须以这种方式部署它。
删除行.assembly MyThing{}
并按如下方式调用ilasm:
ilasm.exe /DLL /OUTPUT=MyThing.netmodule
你得到一个netmodule而不是一个程序集。
不幸的是,VS2010(显然更早)不支持添加netmodule引用,这意味着在调试时必须将它保留在2个独立的程序集中。将它们作为程序集的一部分添加的唯一方法是使用/addmodule:{files}
命令行参数自行运行csc.exe。在MSBuild脚本中,它不会太痛苦。当然,如果你是勇敢或愚蠢的,你可以每次手动运行csc。当多个程序集需要访问它时,它肯定会变得更加复杂。
所以,它可以在.Net中完成。值得付出额外的努力吗?嗯,好吧,我想我会让你决定那个。
额外信用:事实证明除了MSIL之外,至少还有一种其他.NET语言可以对enum
进行通用限制:F#。
type MyThing =
static member GetEnumFromString<'T when 'T :> Enum> str defaultValue: 'T =
/// protect for null (only required in interop with C#)
let str = if isNull str then String.Empty else str
Enum.GetValues(typedefof<'T>)
|> Seq.cast<_>
|> Seq.tryFind(fun v -> String.Compare(v.ToString(), str.Trim(), true) = 0)
|> function Some x -> x | None -> defaultValue
这个版本更容易维护,因为它是一个完全支持Visual Studio IDE的着名语言,但您仍然需要在解决方案中使用单独的项目。但是,它自然会产生相当不同的IL(代码 非常不同),它依赖于FSharp.Core
库,就像任何其他外部库一样,它需要成为您的发行版的一部分
以下是如何使用它(基本上与MSIL解决方案相同),并显示它在其他同义结构上正确失败:
// works, result is inferred to have type StringComparison
var result = MyThing.GetEnumFromString("OrdinalIgnoreCase", StringComparison.Ordinal);
// type restriction is recognized by C#, this fails at compile time
var result = MyThing.GetEnumFromString("OrdinalIgnoreCase", 42);
答案 2 :(得分:182)
从C#7.3开始(Visual Studio2017≥v15.7提供),此代码现已完全有效:
public static TEnum Parse<TEnum>(string value)
where TEnum : struct, Enum { ... }
您可以通过滥用约束继承来获得真正的编译器强制枚举约束。以下代码同时指定class
和struct
约束:
public abstract class EnumClassUtils<TClass>
where TClass : class
{
public static TEnum Parse<TEnum>(string value)
where TEnum : struct, TClass
{
return (TEnum) Enum.Parse(typeof(TEnum), value);
}
}
public class EnumUtils : EnumClassUtils<Enum>
{
}
用法:
EnumUtils.Parse<SomeEnum>("value");
注意:这在C#5.0语言规范中有明确规定:
如果类型参数S取决于类型参数T,则: [...]它有效 S具有值类型约束,T具有引用类型 约束。实际上,这将T限制为System.Object类型, System.ValueType,System.Enum和任何接口类型。
答案 3 :(得分:30)
修改强>
Julien Lebosquain现在已经很好地回答了这个问题。
我还希望在添加ignoreCase
和defaultValue
的同时使用TryParse
,ParseOrDefault
和可选参数扩展他的回答。
public abstract class ConstrainedEnumParser<TClass> where TClass : class
// value type constraint S ("TEnum") depends on reference type T ("TClass") [and on struct]
{
// internal constructor, to prevent this class from being inherited outside this code
internal ConstrainedEnumParser() {}
// Parse using pragmatic/adhoc hard cast:
// - struct + class = enum
// - 'guaranteed' call from derived <System.Enum>-constrained type EnumUtils
public static TEnum Parse<TEnum>(string value, bool ignoreCase = false) where TEnum : struct, TClass
{
return (TEnum)Enum.Parse(typeof(TEnum), value, ignoreCase);
}
public static bool TryParse<TEnum>(string value, out TEnum result, bool ignoreCase = false, TEnum defaultValue = default(TEnum)) where TEnum : struct, TClass // value type constraint S depending on T
{
var didParse = Enum.TryParse(value, ignoreCase, out result);
if (didParse == false)
{
result = defaultValue;
}
return didParse;
}
public static TEnum ParseOrDefault<TEnum>(string value, bool ignoreCase = false, TEnum defaultValue = default(TEnum)) where TEnum : struct, TClass // value type constraint S depending on T
{
if (string.IsNullOrEmpty(value)) { return defaultValue; }
TEnum result;
if (Enum.TryParse(value, ignoreCase, out result)) { return result; }
return defaultValue;
}
}
public class EnumUtils: ConstrainedEnumParser<System.Enum>
// reference type constraint to any <System.Enum>
{
// call to parse will then contain constraint to specific <System.Enum>-class
}
用法示例:
WeekDay parsedDayOrArgumentException = EnumUtils.Parse<WeekDay>("monday", ignoreCase:true);
WeekDay parsedDayOrDefault;
bool didParse = EnumUtils.TryParse<WeekDay>("clubs", out parsedDayOrDefault, ignoreCase:true);
parsedDayOrDefault = EnumUtils.ParseOrDefault<WeekDay>("friday", ignoreCase:true, defaultValue:WeekDay.Sunday);
<强>旧强>
我使用评论和“新”发展对Vivek's answer的旧改进:
TEnum
来明确用户TryParse
使用现有参数处理ignoreCase
(在VS2010 / .Net 4中介绍)default
value(在VS2005 / .Net 2中引入)defaultValue
和ignoreCase
导致:
public static class EnumUtils
{
public static TEnum ParseEnum<TEnum>(this string value,
bool ignoreCase = true,
TEnum defaultValue = default(TEnum))
where TEnum : struct, IComparable, IFormattable, IConvertible
{
if ( ! typeof(TEnum).IsEnum) { throw new ArgumentException("TEnum must be an enumerated type"); }
if (string.IsNullOrEmpty(value)) { return defaultValue; }
TEnum lResult;
if (Enum.TryParse(value, ignoreCase, out lResult)) { return lResult; }
return defaultValue;
}
}
答案 4 :(得分:18)
您可以为类定义静态构造函数,该构造函数将检查类型T是枚举,如果不是则抛出异常。这是Jeffery Richter在他的书CLR中通过C#提到的方法。
internal sealed class GenericTypeThatRequiresAnEnum<T> {
static GenericTypeThatRequiresAnEnum() {
if (!typeof(T).IsEnum) {
throw new ArgumentException("T must be an enumerated type");
}
}
}
然后在parse方法中,您可以使用Enum.Parse(typeof(T),input,true)将字符串转换为枚举。最后一个真实参数用于忽略输入的大小写。
答案 5 :(得分:13)
还应该考虑到,因为使用Enum约束的C#7.3的发布支持开箱即用而无需进行额外的检查和填充。
因此,如果您已将项目的语言版本更改为C#7.3,则以下代码将完全正常运行:
private static T GetEnumFromString<T>(string value, T defaultValue) where T : Enum
{
// Your code goes here...
}
如果您不知道如何将语言版本更改为C#7.3,请参阅以下屏幕截图:
编辑1 - 必需的Visual Studio版本并考虑ReSharper
要使Visual Studio能够识别至少需要15.7版本的新语法。您可以找到Microsoft的发行说明中提到的内容,请参阅Visual Studio 2017 15.7 Release Notes。感谢@MohamedElshawaf指出这个有效的问题。
请注意,在我的案例中,ReSharper 2018.1在编写此EDIT时尚不支持C#7.3。激活ReSharper会突出显示Enum约束,因为它错误地告诉我不能使用System.Array&#39;,&#39; System.Delegate&#39;,System.Enum&#39; ,&#39; System.ValueType&#39;,&#39; object&#39;作为类型参数约束。 ReSharper建议快速解决删除&#39; Enum&#39;方法的类型参数T的约束
但是,如果您在工具 - &gt;下暂时关闭ReSharper选项 - &gt; ReSharper Ultimate - &gt;一般您会发现使用VS 15.7或更高版本以及C#7.3或更高版本时语法完全正常。
答案 6 :(得分:11)
我通过dimarzionist修改了样本。此版本仅适用于Enums,不允许结构通过。
public static T ParseEnum<T>(string enumString)
where T : struct // enum
{
if (String.IsNullOrEmpty(enumString) || !typeof(T).IsEnum)
throw new Exception("Type given must be an Enum");
try
{
return (T)Enum.Parse(typeof(T), enumString, true);
}
catch (Exception ex)
{
return default(T);
}
}
答案 7 :(得分:9)
我试着稍微改进一下代码:
public T LoadEnum<T>(string value, T defaultValue = default(T)) where T : struct, IComparable, IFormattable, IConvertible
{
if (Enum.IsDefined(typeof(T), value))
{
return (T)Enum.Parse(typeof(T), value, true);
}
return defaultValue;
}
答案 8 :(得分:5)
我确实有特定的要求,我需要使用与枚举值相关联的文本的枚举。例如,当我使用enum指定错误类型时,它需要描述错误详细信息。
public static class XmlEnumExtension
{
public static string ReadXmlEnumAttribute(this Enum value)
{
if (value == null) throw new ArgumentNullException("value");
var attribs = (XmlEnumAttribute[]) value.GetType().GetField(value.ToString()).GetCustomAttributes(typeof (XmlEnumAttribute), true);
return attribs.Length > 0 ? attribs[0].Name : value.ToString();
}
public static T ParseXmlEnumAttribute<T>(this string str)
{
foreach (T item in Enum.GetValues(typeof(T)))
{
var attribs = (XmlEnumAttribute[])item.GetType().GetField(item.ToString()).GetCustomAttributes(typeof(XmlEnumAttribute), true);
if(attribs.Length > 0 && attribs[0].Name.Equals(str)) return item;
}
return (T)Enum.Parse(typeof(T), str, true);
}
}
public enum MyEnum
{
[XmlEnum("First Value")]
One,
[XmlEnum("Second Value")]
Two,
Three
}
static void Main()
{
// Parsing from XmlEnum attribute
var str = "Second Value";
var me = str.ParseXmlEnumAttribute<MyEnum>();
System.Console.WriteLine(me.ReadXmlEnumAttribute());
// Parsing without XmlEnum
str = "Three";
me = str.ParseXmlEnumAttribute<MyEnum>();
System.Console.WriteLine(me.ReadXmlEnumAttribute());
me = MyEnum.One;
System.Console.WriteLine(me.ReadXmlEnumAttribute());
}
答案 9 :(得分:4)
希望这有用:
public static TValue ParseEnum<TValue>(string value, TValue defaultValue)
where TValue : struct // enum
{
try
{
if (String.IsNullOrEmpty(value))
return defaultValue;
return (TValue)Enum.Parse(typeof (TValue), value);
}
catch(Exception ex)
{
return defaultValue;
}
}
答案 10 :(得分:3)
这是我的看法。结合答案和MSDN
public static TEnum ParseToEnum<TEnum>(this string text) where TEnum : struct, IConvertible, IComparable, IFormattable
{
if (string.IsNullOrEmpty(text) || !typeof(TEnum).IsEnum)
throw new ArgumentException("TEnum must be an Enum type");
try
{
var enumValue = (TEnum)Enum.Parse(typeof(TEnum), text.Trim(), true);
return enumValue;
}
catch (Exception)
{
throw new ArgumentException(string.Format("{0} is not a member of the {1} enumeration.", text, typeof(TEnum).Name));
}
}
答案 11 :(得分:3)
有趣的是,显然这是possible in other langauges(Managed C ++,IL直接)。
引用:
......两个约束实际上都会生成有效的IL,如果用另一种语言编写,也可以被C#使用(您可以在托管C ++或IL中声明这些约束)。
谁知道
答案 12 :(得分:3)
从C#&lt; = 7.2起,现有答案都是正确的。但是,有一种C#语言feature request(与corefx功能请求相关联)以允许以下内容;
public class MyGeneric<TEnum> where TEnum : System.Enum
{ }
在撰写本文时,该功能是&#34;在讨论&#34;在语言发展会议上。
修改强>
答案 13 :(得分:1)
我一直很喜欢这个(你可以根据需要进行修改):
public static IEnumerable<TEnum> GetEnumValues()
{
Type enumType = typeof(TEnum);
if(!enumType.IsEnum)
throw new ArgumentException("Type argument must be Enum type");
Array enumValues = Enum.GetValues(enumType);
return enumValues.Cast<TEnum>();
}
答案 14 :(得分:1)
我喜欢使用IL的Christopher Currens解决方案,但对于那些不想处理将MSIL包含在构建过程中的棘手业务的人,我在C#中编写了类似的函数。
请注意,虽然您不能使用where T : Enum
之类的通用限制,因为Enum是特殊类型。因此,我必须检查给定的泛型类型是否真的是枚举。
我的功能是:
public static T GetEnumFromString<T>(string strValue, T defaultValue)
{
// Check if it realy enum at runtime
if (!typeof(T).IsEnum)
throw new ArgumentException("Method GetEnumFromString can be used with enums only");
if (!string.IsNullOrEmpty(strValue))
{
IEnumerator enumerator = Enum.GetValues(typeof(T)).GetEnumerator();
while (enumerator.MoveNext())
{
T temp = (T)enumerator.Current;
if (temp.ToString().ToLower().Equals(strValue.Trim().ToLower()))
return temp;
}
}
return defaultValue;
}
答案 15 :(得分:1)
我已将Vivek的解决方案封装到您可以重用的实用程序类中。请注意,您仍应在类型上定义类型约束“where T:struct,IConvertible”。
using System;
internal static class EnumEnforcer
{
/// <summary>
/// Makes sure that generic input parameter is of an enumerated type.
/// </summary>
/// <typeparam name="T">Type that should be checked.</typeparam>
/// <param name="typeParameterName">Name of the type parameter.</param>
/// <param name="methodName">Name of the method which accepted the parameter.</param>
public static void EnforceIsEnum<T>(string typeParameterName, string methodName)
where T : struct, IConvertible
{
if (!typeof(T).IsEnum)
{
string message = string.Format(
"Generic parameter {0} in {1} method forces an enumerated type. Make sure your type parameter {0} is an enum.",
typeParameterName,
methodName);
throw new ArgumentException(message);
}
}
/// <summary>
/// Makes sure that generic input parameter is of an enumerated type.
/// </summary>
/// <typeparam name="T">Type that should be checked.</typeparam>
/// <param name="typeParameterName">Name of the type parameter.</param>
/// <param name="methodName">Name of the method which accepted the parameter.</param>
/// <param name="inputParameterName">Name of the input parameter of this page.</param>
public static void EnforceIsEnum<T>(string typeParameterName, string methodName, string inputParameterName)
where T : struct, IConvertible
{
if (!typeof(T).IsEnum)
{
string message = string.Format(
"Generic parameter {0} in {1} method forces an enumerated type. Make sure your input parameter {2} is of correct type.",
typeParameterName,
methodName,
inputParameterName);
throw new ArgumentException(message);
}
}
/// <summary>
/// Makes sure that generic input parameter is of an enumerated type.
/// </summary>
/// <typeparam name="T">Type that should be checked.</typeparam>
/// <param name="exceptionMessage">Message to show in case T is not an enum.</param>
public static void EnforceIsEnum<T>(string exceptionMessage)
where T : struct, IConvertible
{
if (!typeof(T).IsEnum)
{
throw new ArgumentException(exceptionMessage);
}
}
}
答案 16 :(得分:1)
我创建了一个扩展方法to get integer value from enum
看一下方法实现
public static int ToInt<T>(this T soure) where T : IConvertible//enum
{
if (typeof(T).IsEnum)
{
return (int) (IConvertible)soure;// the tricky part
}
//else
// throw new ArgumentException("T must be an enumerated type");
return soure.ToInt32(CultureInfo.CurrentCulture);
}
这是用法
MemberStatusEnum.Activated.ToInt()// using extension Method
(int) MemberStatusEnum.Activated //the ordinary way
答案 17 :(得分:1)
如之前的其他答案所述;虽然这不能用源代码表示,但它实际上可以在IL Level上完成。 @Christopher Currens answer展示了IL如何做到这一点。
使用Fody的加载项ExtraConstraints.Fody,有一个非常简单的方法,完成构建工具,来实现这一目标。只需将他们的nuget包(Fody
,ExtraConstraints.Fody
)添加到您的项目中,并添加如下约束(摘自ExtraConstraints自述文件):
public void MethodWithEnumConstraint<[EnumConstraint] T>() {...}
public void MethodWithTypeEnumConstraint<[EnumConstraint(typeof(ConsoleColor))] T>() {...}
和Fody将为约束存在添加必要的IL。 另请注意约束代表的附加功能:
public void MethodWithDelegateConstraint<[DelegateConstraint] T> ()
{...}
public void MethodWithTypeDelegateConstraint<[DelegateConstraint(typeof(Func<int>))] T> ()
{...}
关于枚举,您可能还需要注意非常有趣的Enums.NET。
答案 18 :(得分:1)
这是我的实现。基本上,您可以设置任何属性并且它可以工作。
public static class EnumExtensions
{
public static string GetDescription(this Enum @enum)
{
Type type = @enum.GetType();
FieldInfo fi = type.GetField(@enum.ToString());
DescriptionAttribute[] attrs =
fi.GetCustomAttributes(typeof(DescriptionAttribute), false) as DescriptionAttribute[];
if (attrs.Length > 0)
{
return attrs[0].Description;
}
return null;
}
}
答案 19 :(得分:0)
如果之后可以直接使用直接投射,我猜你可以在你的方法中使用System.Enum
基类,只要有必要。您只需要仔细更换类型参数即可。所以方法实现就像:
public static class EnumUtils
{
public static Enum GetEnumFromString(string value, Enum defaultValue)
{
if (string.IsNullOrEmpty(value)) return defaultValue;
foreach (Enum item in Enum.GetValues(defaultValue.GetType()))
{
if (item.ToString().ToLower().Equals(value.Trim().ToLower())) return item;
}
return defaultValue;
}
}
然后你就可以使用它:
var parsedOutput = (YourEnum)EnumUtils.GetEnumFromString(someString, YourEnum.DefaultValue);
答案 20 :(得分:-7)
为了完整起见,以下是Java解决方案。我确信在C#中也可以这样做。它避免了必须在代码中的任何位置指定类型 - 而是在您尝试解析的字符串中指定它。
问题是没有任何方法可以知道String可能匹配哪个枚举 - 所以答案就是解决这个问题。
不接受只接受字符串值,而是接受具有枚举和“enumeration.value”形式的值的String。工作代码如下 - 需要Java 1.8或更高版本。这也会使XML变得更加精确,就像你会看到像color =“Color.red”而不仅仅是color =“red”一样。
您可以使用包含枚举名称点值名称的字符串调用acceptEnumeratedValue()方法。
该方法返回正式的枚举值。
import java.util.HashMap;
import java.util.Map;
import java.util.function.Function;
public class EnumFromString {
enum NumberEnum {One, Two, Three};
enum LetterEnum {A, B, C};
Map<String, Function<String, ? extends Enum>> enumsByName = new HashMap<>();
public static void main(String[] args) {
EnumFromString efs = new EnumFromString();
System.out.print("\nFirst string is NumberEnum.Two - enum is " + efs.acceptEnumeratedValue("NumberEnum.Two").name());
System.out.print("\nSecond string is LetterEnum.B - enum is " + efs.acceptEnumeratedValue("LetterEnum.B").name());
}
public EnumFromString() {
enumsByName.put("NumberEnum", s -> {return NumberEnum.valueOf(s);});
enumsByName.put("LetterEnum", s -> {return LetterEnum.valueOf(s);});
}
public Enum acceptEnumeratedValue(String enumDotValue) {
int pos = enumDotValue.indexOf(".");
String enumName = enumDotValue.substring(0, pos);
String value = enumDotValue.substring(pos + 1);
Enum enumeratedValue = enumsByName.get(enumName).apply(value);
return enumeratedValue;
}
}