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. |
open operator fun equals(other: Any?): Boolean Indicates whether some other object is "equal to" this one. Implementations must fulfil the following requirements: | |
open fun hashCode(): Int Returns a hash code value for the object. The general contract of hashCode is: | |
open fun toString(): String Returns a string representation of the object. |
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/