interface KAnnotatedElement
Represents an annotated element and allows to obtain its annotations. See the Kotlin language documentation for more information.
abstract val annotations: List<Annotation> Annotations which are present on this element. |
fun <T : Annotation> KAnnotatedElement.findAnnotation(): T? Returns an annotation of the given type on this element. |
interface KCallable<out R> : KAnnotatedElement Represents a callable entity, such as a function or a property. | |
interface KClass<T : Any> : KDeclarationContainer, KAnnotatedElement, KClassifier Represents a class and provides introspection capabilities. Instances of this class are obtainable by the | |
interface KParameter : KAnnotatedElement Represents a parameter passed to a function or a property getter/setter, including |
© 2010–2017 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-annotated-element/