Can I discover a Java class' declared inner classes using reflection?

Viewed 26150

In Java, is there any way to use the JDK libraries to discover the private classes implemented within another class? Or do I need so use something like asm?

3 Answers
Related