-
@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 Modifier and Type Required Element 描述 Class<? extends Annotation>
value
表示可重复注释类型的 包含注释类型。
-
-
-
Element Detail
-
value
Class<? extends Annotation> value
表示可重复注释类型的 包含注释类型。- 结果
- 包含注释类型
-
-