abstract 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:
For example, on JVM, KClass instances for a primitive type (int
) and the corresponding wrapper type (java.lang.Integer
) are considered equal, because they have the same fully qualified name "kotlin.Int".
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:
For example, on JVM, KClass instances for a primitive type (int
) and the corresponding wrapper type (java.lang.Integer
) are considered equal, because they have the same fully qualified name "kotlin.Int".
© 2010–2020 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/equals.html