interface KDeclarationContainer
Represents an entity which may contain declarations of any other entities, such as a class or a package.
abstract val members: Collection<KCallable<*>> All functions and properties accessible in this container. |
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. |
interface KClass<T : Any> : KDeclarationContainer, KAnnotatedElement, KClassifier Represents a class and provides introspection capabilities. Instances of this class are obtainable by the |
© 2010–2017 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-declaration-container/