-
@Documented @Target(TYPE) @Retention(RUNTIME) public @interface SupportedOptions
用于指示注释处理器支持的选项的注释。Processor.getSupportedOptions()
方法可以根据此批注的值构造其结果,如AbstractProcessor.getSupportedOptions()
所述 。 应仅使用strings conforming to the grammar作为值。- 从以下版本开始:
- 1.6
-
-
Element Detail
-
value
String[] value
返回支持的选项。- 结果
- 支持的选项
-
-