gpt4 book ai didi

java - 如何在注释中使用不同的枚举类型?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:51:01 30 4
gpt4 key购买 nike

我正在使用特定于模块的不同枚举来定义不同模块的系统常量。现在我需要定义一个注释,我可以在其中指定这些系统常量中的任何一个。

我无法定义注释,因为不同模块的常量具有不同的枚举类型。如果我定义一个由所有枚举类型实现的接口(interface),那将不起作用,因为接口(interface)不能在注释中使用。我总是可以定义字符串常量而不是枚举。但是有没有办法使用枚举来做到这一点?

interface ISystemConstant {
}

enum ModuleA implements ISystemConstant { // Enum of system constants in ModuleA
}

enum ModuleB implements ISystemConstant { // Enum of system constants in ModuleB
}

@interface Annotation { // The annotation I need to define
ISystemConstant sysConstant(); // Illegal interfaces are not allowed in annotations.
}

最佳答案

  • 使用代理枚举

然后您可以在注释中使用代理的类型。这是一个小例子:

public @interface Annotation {
Types value();
}

interface Type {}

enum FirstType implements Type {
ONE, TWO;
}

enum SecondType implements Type {
A, B
}

// proxy
enum Types {
FT_ONE(FirstType.ONE),
FT_TWO(FirstType.TWO),
ST_A(SecondType.A),
ST_B(SecondType.B);

private final Type actual;

private Types(Type actual) {
this.actual = actual;
}

public Type getType() {
return actual;
}
}
  • 使用字符串作为标识符

使用字符串来标识所需的枚举。您必须在运行时检查它是否有效。您还可以添加第二个字段 Class<?> type()其中指定了使用的模块。

public @interface Annotation {
String value();
}

关于java - 如何在注释中使用不同的枚举类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18726477/

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