
name.remal.annotation.AnnotationAttributeAlias Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Java & Kotlin tools: common
The newest version!
package name.remal.annotation;
import javax.annotation.Nonnull;
import java.lang.annotation.*;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@Documented
@Repeatable(AnnotationAttributeAlias.List.class)
@Target(METHOD)
@Retention(RUNTIME)
public @interface AnnotationAttributeAlias {
@Nonnull Class annotationClass();
@Nonnull String attributeName();
@Documented
@Target(METHOD)
@Retention(RUNTIME)
@interface List {
@Nonnull AnnotationAttributeAlias[] value() default {};
}
}