
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 static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import org.jetbrains.annotations.NotNull;
@Documented
@Repeatable(AnnotationAttributeAlias.List.class)
@Target(METHOD)
@Retention(RUNTIME)
public @interface AnnotationAttributeAlias {
@NotNull Class extends Annotation> annotationClass();
@NotNull String attributeName();
@Documented
@Target(METHOD)
@Retention(RUNTIME)
@interface List {
@NotNull AnnotationAttributeAlias[] value() default {};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy