gpt4 book ai didi

java - 访问已实现接口(interface)引用的枚举的注释

转载 作者:行者123 更新时间:2023-12-01 19:38:16 25 4
gpt4 key购买 nike

我正在尝试访问枚举字段的注释参数,该字段由许多枚举类实现的接口(interface)引用。像这样的事情:

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
@interface MyAnnotation {
String someValue();
}

interface CommonInterface {}

enum FirstEnum implements CommonInterface{
@MyAnnotation(someValue = "abc")
A;
}

enum SecondEnum implements CommonInterface{
@MyAnnotation(someValue = "cde")
B;
}

void foo(CommonInterface enumValue){
String someValue; // get the parameter value
}

我找到了解决这个问题的方法,方法是向公共(public)接口(interface)添加返回枚举类反射信息的方法,如下所示:

interface CommonInterface{
Class<? extends CommonInterface> getEnumClass();
String getName();
}

enum FirstEnum implements CommonInteface{
@MyAnnotation(someValue = "abc")
A;

public Class<? extends CommonInteface> getEnumClass() {
return getClass();
}

public String getName() {
return name();
}
}

void foo(CommonInterface enumValue){
MyAnnotation myAnnotation = enumValue.getEnumClass().getField(enumValue.getName()).getAnnotation(MyAnnotation.class);
}

是否有更好的方法来做同样的事情?我看到一些解决方案,他们推荐一个包装枚举类,它将接口(interface)引用的枚举值作为构造函数参数。就我而言,这不太可行,因为会有许多枚举实现公共(public)接口(interface),并且每个枚举都有许多值,因此维护它并不好。

谢谢

最佳答案

您不需要通过 CommonInterface 公开 getEnumClass(),在实例上调用 getClass() 就足够了。同样,为什么要调用您的方法 getName() 为什么不直接调用它 name() 以便它由 Enum 隐式实现呢?

您可以执行类似的操作,而无需向 CommonInterface 添加任何方法:

void foo(CommonInterface enumValue) throws Exception {
String name = enumValue.getClass().getMethod("name").invoke(enumValue).toString();
MyAnnotation myAnnotation = enumValue.getClass().getField(name).getAnnotation(MyAnnotation.class);
System.out.println(myAnnotation.someValue());
}

但这很危险,因为它假设 CommonInterface 的所有实现都是枚举,因此有一个 name() 方法。如果您的 CommonInterface 实现不是枚举,为了使想法“更安全”,请将“name”方法添加到 CommonInterface:

interface CommonInterface {
String name();
}

然后你的“foo”方法变成:

void foo(CommonInterface enumValue) throws Exception {
MyAnnotation myAnnotation = enumValue.getClass().getField(enumValue.name()).getAnnotation(MyAnnotation.class);
System.out.println(myAnnotation.someValue());
}

关于java - 访问已实现接口(interface)引用的枚举的注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59192474/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com