commonMain.io.mths.kava.processor.util.GetQualifiedName.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kava-processor-jvm Show documentation
Show all versions of kava-processor-jvm Show documentation
The KSP Kava Annotation Processor to generate validation extensions.
package io.mths.kava.processor.util
import kotlin.reflect.KClass
fun getQualifiedName(clazz: KClass<*>): String {
return clazz.qualifiedName
?: throw IllegalStateException("Qualified name for not found")
}