Getting the java-className of an object using reflection (including last '$')?

Hi, I have this code:

val reflectedModule = classLoaderMirror.reflectModule(decl.asModule)
val moduleInstance = reflectedModule.instance

Then moduleInstance.getClass.getSimpleName gets me the name I’m after (including the ‘$’).

Is there a way to obtain this without instantiating it first?