如何在 Java 中将对象转换为 Enum 并获取当前值

我目前有一个领域被投射到反对。我需要检查该字段是否是枚举类型,如果是,我想获取当前设置值的名称。任何想法,将不胜感激。


If(field is an enum){

      get the value of the field

}

我现在在哪里


if (field.getClass().isEnum()){

    String enumValue =  //here i need to cast the field to enum and do something like field.name()

}


慕桂英4014372
浏览 113回答 2
2回答

慕尼黑8549860

基于我当前有一个字段被转换为对象我假设你有类似的Object obj = SomeEnum.FOO;情况我想获取当前设置值的名称我假设你想得到"FOO"String.如果上述假设正确,那么您所写的内容String enumValue =  //here i need to cast the field to enum and do something like field.name()应该为你工作。因此,当您确定field包含枚举值时,您可以将其转换为Enum类型并调用其name()方法,该方法返回表示枚举值的字符串。String enumValue = ((Enum)field).name();如果您确定枚举不会覆盖其toString()方法,您也可以调用它,因为默认情况下它也返回name枚举。String enumValue = field.toString(); //this solution looks nicer but first one is more reliable.

梦里花落0921

您已经在该字段中获得了常量的值,只需执行field.get(theObject);
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java