Cole K
10/01/2020, 5:56 PMClass.forName("com.mystuff.stylopoc.core.Features.Login")
I think its worth noting that the object, Login, is internal to a sealed class, Features
Any ideas?streetsofboston
10/01/2020, 5:57 PMcom.mystuff.stylopoc.core.Features$Login
nanodeath
10/01/2020, 6:06 PMCole K
10/01/2020, 6:08 PMCole K
10/01/2020, 6:09 PMtypeMirror
, then into a string that represents the class name. The string, however, has a dot rather than a dollar sign for the class name. Any clue how I could fix this?Cole K
10/01/2020, 6:13 PMephemient
10/01/2020, 7:53 PM.
is for packages (it's actually a /
in the JVM internally). within a classname, nesting always uses $