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