oliverdain
01/13/2017, 6:58 PMKClass.qualifiedName
but then I’m finding I can’t deserialize that easily. If it turns out that the KClass
represented a “regular” class then Class.forName(whatISerialized).kotlin
works but if the KClass
was a KClass<Int>
or something then what gets serialized is <http://kotlin.Int|kotlin.Int>
and Class.forName(”<http://kotlin.Int|kotlin.Int>”)
fails. I can change how I’m serializing and/or how I’m deserializaing. I just need a reliable “round-trip”. Make sense?