KClass
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.
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.
Parameters
the type of the class.
the type of the class.
the type of the class.
the type of the class.
Functions
Returns true
if value is an instance of this class on a given platform.
Returns true
if value is an instance of this class on a given platform.
Returns true
if value is an instance of this class on a given platform.
Returns true
if value is an instance of this class on a given platform.
Properties
true
if this class is a companion object. See the Kotlin language documentation for more information.
true
if this class is a data class. See the Kotlin language documentation for more information.
true
if this class is an inner class. See the Kotlin language documentation for more information.
true
if this class is sealed
. See the Kotlin language documentation for more information.
Extensions
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.
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.
Returns a KClass instance representing the companion object of a given class, or null
if the class doesn't have a companion object.
Returns an instance of the companion object of a given class, or null
if the class doesn't have a companion object.
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.
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.
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.
Returns extension functions declared in this class.
Returns extension properties declared in this class.
Returns non-extension non-static functions declared in this class.
Returns non-extension properties declared in this class.
Returns all functions and properties declared in this class. Does not include members declared in supertypes.
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>
.
Returns an annotation of the given type on this element.
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
.
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.
Returns true if this element is annotated with an annotation of type T.
Returns true
if this
class is the same or is a (possibly indirect) subclass of base, false
otherwise.
Returns true
if this
class is the same or is a (possibly indirect) superclass of derived, false
otherwise.
Returns extension functions declared in this class and all of its superclasses.
Returns extension properties declared in this class and all of its superclasses.
Returns non-extension non-static functions declared in this class and all of its superclasses.
Returns non-extension properties declared in this class and all of its superclasses.
Returns the primary constructor of this class, or null
if this class has no primary constructor. See the Kotlin language documentation for more information.
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.
Returns static functions declared in this class.
Returns static properties declared in this class. Only properties representing static fields of Java classes are considered static.
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.