Enum的字符串表示

我有以下枚举:

public enum AuthenticationMethod
{
    FORMS = 1,
    WINDOWSAUTHENTICATION = 2,
    SINGLESIGNON = 3
}

但问题是,当我要求AuthenticationMethod.FORMS而不是id 1时,我需要“FORMS”一词。

我发现了这个问题的下列解决方案(链接):

首先,我需要创建一个名为“StringValue”的自定义属性:

public class StringValue : System.Attribute
{
    private readonly string _value;

    public StringValue(string value)
    {
        _value = value;
    }

    public string Value
    {
        get { return _value; }
    }

}

然后我可以将此属性添加到我的枚举器中:

public enum AuthenticationMethod
{
    [StringValue("FORMS")]
    FORMS = 1,
    [StringValue("WINDOWS")]
    WINDOWSAUTHENTICATION = 2,
    [StringValue("SSO")]
    SINGLESIGNON = 3
}

当然,我需要一些东西来检索StringValue:

public static class StringEnum
{
    public static string GetStringValue(Enum value)
    {
        string output = null;
        Type type = value.GetType();

        //Check first in our cached results...

        //Look for our 'StringValueAttribute' 

        //in the field's custom attributes

        FieldInfo fi = type.GetField(value.ToString());
        StringValue[] attrs =
           fi.GetCustomAttributes(typeof(StringValue),
                                   false) as StringValue[];
        if (attrs.Length > 0)
        {
            output = attrs[0].Value;
        }

        return output;
    }
}

现在好,我已经有了获得一个枚举器字符串值的工具。 然后我可以像这样使用它:

string valueOfAuthenticationMethod = StringEnum.GetStringValue(AuthenticationMethod.FORMS);

好吧,现在所有这些工作都像一个魅力,但我发现它很多工作。 我想知道是否有更好的解决方案。

我也尝试了一些字典和静态属性,但那也不是更好。


尝试使用类型安全枚举模式。

public sealed class AuthenticationMethod {

    private readonly String name;
    private readonly int value;

    public static readonly AuthenticationMethod FORMS = new AuthenticationMethod (1, "FORMS");
    public static readonly AuthenticationMethod WINDOWSAUTHENTICATION = new AuthenticationMethod (2, "WINDOWS");
    public static readonly AuthenticationMethod SINGLESIGNON = new AuthenticationMethod (3, "SSN");        

    private AuthenticationMethod(int value, String name){
        this.name = name;
        this.value = value;
    }

    public override String ToString(){
        return name;
    }

}

更新显式(或隐式)类型转换可以通过

  • 添加静态字段与映射

    private static readonly Dictionary<string, AuthenticationMethod> instance = new Dictionary<string,AuthenticationMethod>();
    
  • nb为了使“enum member”字段的初始化在调用实例构造函数时不会抛出NullReferenceException,请确保将Dictionary字段放在类中的“enum member”字段之前。 这是因为按照声明顺序调用静态字段初始化程序,并在静态构造函数之前创建奇怪且必要但令人困惑的情况,即可以在所有静态字段初始化之前以及在调用静态构造函数之前调用实例构造函数。
  • 在实例构造函数中填充此映射

    instance[name] = this;
    
  • 并添加用户定义的类型转换运算符

    public static explicit operator AuthenticationMethod(string str)
    {
        AuthenticationMethod result;
        if (instance.TryGetValue(str, out result))
            return result;
        else
            throw new InvalidCastException();
    }
    

  • 使用方法

    Enum.GetName(Type MyEnumType,  object enumvariable)  
    

    如(假设Shipper是一个定义的枚举)

    Shipper x = Shipper.FederalExpress;
    string s = Enum.GetName(typeof(Shipper), x);
    

    Enum类中还有一些其他的静态方法也值得研究...


    您可以通过使用ToString()来引用名称而不是值

    Console.WriteLine("Auth method: {0}", AuthenticationMethod.Forms.ToString());
    

    文档在这里:

    http://msdn.microsoft.com/en-us/library/16c1xs4z.aspx

    ...如果你在Pascal Case中命名你的枚举(就像我这样 - 例如ThisIsMyEnumValue = 1等),那么你可以使用一个非常简单的正则表达式来打印友好的表单:

    static string ToFriendlyCase(this string EnumString)
    {
        return Regex.Replace(EnumString, "(?!^)([A-Z])", " $1");
    }
    

    这可以很容易地从任何字符串调用:

    Console.WriteLine("ConvertMyCrazyPascalCaseSentenceToFriendlyCase".ToFriendlyCase());
    

    输出:

    将我的疯狂帕斯卡案件判决转换为友好案件

    这样可以节省运行周围的房屋创建自定义属性,并将它们附加到您的枚举或使用查找表与一个友好的字符串结婚enum值,最重要的是它是自我管理,可以用于任何Pascal案例字符串是无限的更可重用。 当然,它不允许你有一个不同于你的解决方案提供的枚举的友好名称。

    尽管对于更复杂的场景,我确实喜欢你的原始解决方案。 你可以进一步采取你的解决方案,让你的GetStringValue成为你枚举的扩展方法,然后你不需要像StringEnum.GetStringValue一样引用它...

    public static string GetStringValue(this AuthenticationMethod value)
    {
      string output = null;
      Type type = value.GetType();
      FieldInfo fi = type.GetField(value.ToString());
      StringValue[] attrs = fi.GetCustomAttributes(typeof(StringValue), false) as StringValue[];
      if (attrs.Length > 0)
        output = attrs[0].Value;
      return output;
    }
    

    然后你可以直接从你的枚举实例中直接访问它:

    Console.WriteLine(AuthenticationMethod.SSO.GetStringValue());
    
    链接地址: http://www.djcxy.com/p/6495.html

    上一篇: String representation of an Enum

    下一篇: How can I lookup a Java enum from its String value?