我正在使用特定于模块的不同枚举来定义不同模块的系统常量。现在我需要定义一个注释,我可以在其中指定这些系统常量中的任何一个。
我无法定义注释,因为不同模块的常量具有不同的枚举类型。如果我定义了一个由所有枚举类型实现的接口,那将不起作用,因为接口不能在注释中使用。我总是可以定义字符串常量而不是枚举。但是有没有办法使用枚举来做到这一点?
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.
}