Is there any API, preferably part of J2SE (but willing to consider alternatives) that allows manipulation and parsing of Java class names?
For example, given a String representing a class name (such as that which would be passed to a ClassLoader, an API to extract the package name from a class name, extract any inner class name if present, etc?
I can't create Class objects from the Strings and then use reflective methods, since this is all happening before any Class is created - this code needs to parse the strings to decide how to create the Class in the first place. So the API needs to work on Strings.