My class A has
AClaz[] rofl;
The documentation for getDeclaredFields says "This method returns an array of length 0 if the class or interface declares no fields, or if this Class object represents a primitive type, an array class, or void. "
I want to access the rofl array of type AClaz using reflection. Even if the AClaz is an inner class of class A.
So I would do getDeclaredClass ?