KClass

expect interface KClass<T : Any> : KClassifier(source)

Represents a class and provides introspection capabilities. Instances of this class are obtainable by the ::class syntax. See the Kotlin language documentation for more information.

Represents a class and provides introspection capabilities. Instances of this class are obtainable by the ::class syntax. See the Kotlin language documentation for more information.

actual interface KClass<T : Any> : KClassifier

Represents a class and provides introspection capabilities. Instances of this class are obtainable by the ::class syntax. See the Kotlin language documentation for more information.

actual interface KClass<T : Any> : KDeclarationContainer, KAnnotatedElement, KClassifier

Represents a class and provides introspection capabilities. Instances of this class are obtainable by the ::class syntax. See the Kotlin language documentation for more information.

Parameters

T

the type of the class.

T

the type of the class.

T

the type of the class.

T

the type of the class.

Functions

Link copied to clipboard
abstract operator override fun equals(other: Any?): Boolean

Returns true if this KClass instance represents the same Kotlin class as the class represented by other. On JVM this means that all of the following conditions are satisfied:

abstract operator override fun equals(other: Any?): Boolean

Returns true if this KClass instance represents the same Kotlin class as the class represented by other. On JVM this means that all of the following conditions are satisfied:

abstract operator override fun equals(other: Any?): Boolean

Returns true if this KClass instance represents the same Kotlin class as the class represented by other. On JVM this means that all of the following conditions are satisfied:

Link copied to clipboard
abstract override fun hashCode(): Int
abstract override fun hashCode(): Int
abstract override fun hashCode(): Int
Link copied to clipboard
expect abstract fun isInstance(value: Any?): Boolean

Returns true if value is an instance of this class on a given platform.

Since Kotlin 1.1
actual abstract fun isInstance(value: Any?): Boolean

Returns true if value is an instance of this class on a given platform.

Since Kotlin 1.1
actual abstract fun isInstance(value: Any?): Boolean

Returns true if value is an instance of this class on a given platform.

Since Kotlin 1.1
actual abstract fun isInstance(value: Any?): Boolean

Returns true if value is an instance of this class on a given platform.

Since Kotlin 1.1

Properties

Link copied to clipboard
abstract val annotations: List<Annotation>

Annotations which are present on this element.

Link copied to clipboard

All constructors declared in this class.

Link copied to clipboard
abstract val isAbstract: Boolean

true if this class is abstract.

Link copied to clipboard
abstract val isCompanion: Boolean

true if this class is a companion object. See the Kotlin language documentation for more information.

Link copied to clipboard
abstract val isData: Boolean

true if this class is a data class. See the Kotlin language documentation for more information.

Link copied to clipboard
abstract val isFinal: Boolean

true if this class is final.

Link copied to clipboard
abstract val isFun: Boolean

true if this class is a Kotlin functional interface.

Link copied to clipboard
abstract val isInner: Boolean

true if this class is an inner class. See the Kotlin language documentation for more information.

Link copied to clipboard
abstract val isOpen: Boolean

true if this class is open.

Link copied to clipboard
abstract val isSealed: Boolean

true if this class is sealed. See the Kotlin language documentation for more information.

Link copied to clipboard
abstract val isValue: Boolean

true if this class is a value class.

Link copied to clipboard
abstract override val members: Collection<KCallable<*>>

All functions and properties accessible in this class, including those declared in this class and all of its superclasses. Does not include constructors.

Link copied to clipboard
abstract val nestedClasses: Collection<KClass<*>>

All classes declared inside this class. This includes both inner and static nested classes.

Link copied to clipboard
abstract val objectInstance: T?

The instance of the object declaration, or null if this class is not an object declaration.

Link copied to clipboard
expect abstract val qualifiedName: String?

The fully qualified dot-separated name of the class, or null if the class is local or a class of an anonymous object.

actual abstract val qualifiedName: String?

The fully qualified dot-separated name of the class, or null if the class is local or a class of an anonymous object.

actual abstract val qualifiedName: String?

The fully qualified dot-separated name of the class, or null if the class is local or a class of an anonymous object.

actual abstract val qualifiedName: String?

The fully qualified dot-separated name of the class, or null if the class is local or a class of an anonymous object.

Link copied to clipboard
abstract val sealedSubclasses: List<KClass<out T>>

The list of the immediate subclasses if this class is a sealed class, or an empty list otherwise.

Link copied to clipboard
expect abstract val simpleName: String?

The simple name of the class as it was declared in the source code, or null if the class has no name (if, for example, it is a class of an anonymous object).

actual abstract val simpleName: String?

The simple name of the class as it was declared in the source code, or null if the class has no name (if, for example, it is a class of an anonymous object).

actual abstract val simpleName: String?

The simple name of the class as it was declared in the source code, or null if the class has no name (if, for example, it is a class of an anonymous object).

actual abstract val simpleName: String?

The simple name of the class as it was declared in the source code, or null if the class has no name (if, for example, it is a class of an anonymous object).

Link copied to clipboard
abstract val supertypes: List<KType>

The list of immediate supertypes of this class, in the order they are listed in the source code.

Link copied to clipboard

The list of type parameters of this class. This list does not include type parameters of outer classes.

Link copied to clipboard
abstract val visibility: KVisibility?

Visibility of this class, or null if its visibility cannot be represented in Kotlin.

Extensions

Link copied to clipboard

All superclasses of this class, including indirect ones, in no particular order. Includes superclasses and superinterfaces of the class, but does not include the class itself. The returned collection does not contain more than one instance of any given class.

Link copied to clipboard

All supertypes of this class, including indirect ones, in no particular order. There is not more than one type in the returned collection that has any given classifier.

cast
Link copied to clipboard
fun <T : Any> KClass<T>.cast(value: Any?): T

Casts the given value to the class represented by this KClass object. Throws an exception if the value is null or if it is not an instance of this class.

fun <T : Any> KClass<T>.cast(value: Any?): T

Casts the given value to the class represented by this KClass object. Throws an exception if the value is null or if it is not an instance of this class.

Link copied to clipboard

Returns a KClass instance representing the companion object of a given class, or null if the class doesn't have a companion object.

Link copied to clipboard

Returns an instance of the companion object of a given class, or null if the class doesn't have a companion object.

Link copied to clipboard

Creates a new instance of the class, calling a constructor which either has no parameters or all parameters of which are optional (see KParameter.isOptional). If there are no or many such constructors, an exception is thrown.

Link copied to clipboard
fun KClassifier.createType(    arguments: List<KTypeProjection> = emptyList(),     nullable: Boolean = false,     annotations: List<Annotation> = emptyList()): KType

Creates a KType instance with the given classifier, type arguments, nullability and annotations. If the number of passed type arguments is not equal to the total number of type parameters of a classifier, an exception is thrown. If any of the arguments does not satisfy the bounds of the corresponding type parameter, an exception is thrown.

Link copied to clipboard

Returns all functions declared in this class. If this is a Java class, it includes all non-static methods (both extensions and non-extensions) declared in the class and the superclasses, as well as static methods declared in the class.

Link copied to clipboard

Returns extension functions declared in this class.

Link copied to clipboard

Returns extension properties declared in this class.

Link copied to clipboard

Returns non-extension non-static functions declared in this class.

Link copied to clipboard

Returns non-extension properties declared in this class.

Link copied to clipboard

Returns all functions and properties declared in this class. Does not include members declared in supertypes.

Link copied to clipboard

Returns a type corresponding to the given class with type parameters of that class substituted as the corresponding arguments. For example, for class MyMap<K, V>defaultType would return the type MyMap<K, V>.

Link copied to clipboard

Returns an annotation of the given type on this element.

Link copied to clipboard

If T is an @AssociatedObjectKey-annotated annotation class and this class is annotated with @T (S::class), returns object S.

If T is an @AssociatedObjectKey-annotated annotation class and this class is annotated with @T (S::class), returns object S.

Link copied to clipboard

Returns all functions declared in this class, including all non-static methods declared in the class and the superclasses, as well as static methods declared in the class.

Link copied to clipboard

Returns true if this element is annotated with an annotation of type T.

Link copied to clipboard
fun KClass<*>.isSubclassOf(base: KClass<*>): Boolean

Returns true if this class is the same or is a (possibly indirect) subclass of base, false otherwise.

Link copied to clipboard
fun KClass<*>.isSuperclassOf(derived: KClass<*>): Boolean

Returns true if this class is the same or is a (possibly indirect) superclass of derived, false otherwise.

Link copied to clipboard
@get:JvmName(name = "getJavaClass")
val <T> KClass<T>.java: Class<T>
@get:JvmName(name = "getJavaClass")
val <T> KClass<T>.java: Class<T>

Returns a Java Class instance corresponding to the given KClass instance.

Link copied to clipboard
@get:JvmName(name = "getRuntimeClassOfKClassInstance")
val <T : Any> KClass<T>.javaClass: Class<KClass<T>>
@get:JvmName(name = "getRuntimeClassOfKClassInstance")
val <T : Any> KClass<T>.javaClass: Class<KClass<T>>
Link copied to clipboard

Returns a Java Class instance corresponding to the given KClass instance. In case of primitive types it returns corresponding wrapper classes.

Link copied to clipboard

Returns a Java Class instance representing the primitive type corresponding to the given KClass if it exists.

Link copied to clipboard
val <T : Any> KClass<T>.js: JsClass<T>

Obtains a constructor reference for the given KClass.

Link copied to clipboard

Returns the JVM name of the class represented by this KClass instance.

Link copied to clipboard

Returns extension functions declared in this class and all of its superclasses.

Link copied to clipboard

Returns extension properties declared in this class and all of its superclasses.

Link copied to clipboard

Returns non-extension non-static functions declared in this class and all of its superclasses.

Link copied to clipboard

Returns non-extension properties declared in this class and all of its superclasses.

Link copied to clipboard

Returns the primary constructor of this class, or null if this class has no primary constructor. See the Kotlin language documentation for more information.

safeCast
Link copied to clipboard
fun <T : Any> KClass<T>.safeCast(value: Any?): T?

Casts the given value to the class represented by this KClass object. Returns null if the value is null or if it is not an instance of this class.

fun <T : Any> KClass<T>.safeCast(value: Any?): T?

Casts the given value to the class represented by this KClass object. Returns null if the value is null or if it is not an instance of this class.

Link copied to clipboard

Creates an instance of KType with the given classifier, substituting all its type parameters with star projections. The resulting type is not marked as nullable and does not have any annotations.

Link copied to clipboard

Returns static functions declared in this class.

Link copied to clipboard

Returns static properties declared in this class. Only properties representing static fields of Java classes are considered static.

Link copied to clipboard

Immediate superclasses of this class, in the order they are listed in the source code. Includes superclasses and superinterfaces of the class, but does not include the class itself.