-
@Documented @Retention(RUNTIME) @Target(ANNOTATION_TYPE) public @interface Repeatable
注释类型java.lang.annotation.Repeatable
用于指示其声明(meta-)注释的注释类型是可重复的 。 值@Repeatable
表示可重复注释类型的包含注释类型。- 从以下版本开始:
- 1.8
- See The Java™ Language Specification:
- 9.6.3可重复的注释类型,9.7.5相同类型的多个注释
-
-
Required Element Summary
Required Elements 变量和类型 Required Element 描述 类<? extends Annotation>
value
指示可重复注释类型的 包含注释类型。
-
-
-
Element Detail
-
value
类<? extends Annotation> value
指示可重复注释类型的 包含注释类型。- 结果
- 包含注释类型
-
-