All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.io.mths.kava.processor.util.GetQualifiedName.kt Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
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")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy