io.polaris.core.annotation.Compatible Maven / Gradle / Ivy
package io.polaris.core.annotation;
import java.lang.annotation.*;
/**
* 兼容处理标记,表示因考虑目标的兼容性而存在的类或方法
*
* @author Qt
* @since 1.8
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.ANNOTATION_TYPE, ElementType.FIELD})
@Repeatable(Compatibles.class)
public @interface Compatible {
/** 兼容的目标版本等信息 */
String[] value() default "";
}