![JAR search and dependency download from the Maven repository](/logo.png)
name.remal.java.lang.reflect.AnnotatedElement.kt Maven / Gradle / Ivy
package name.remal
import name.remal.annotation.AnnotationUtils
import java.lang.reflect.AnnotatedElement
fun AnnotatedElement.getMetaAnnotations(type: Class): List = AnnotationUtils.getMetaAnnotations(this, type)
fun AnnotatedElement.getMetaAnnotation(type: Class) = AnnotationUtils.getMetaAnnotation(this, type)
fun AnnotatedElement.hasMetaAnnotation(type: Class) = null != getMetaAnnotation(type)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy