
name.remal.java.lang.reflect.AnnotatedElement.kt 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
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