Reflection api – find subclass type-Collection of common programming errors

Hi I am trying to find out the subclass, form an superclass object.

if Class Super is the super class.
and Class Sub1 and Class Sub2 extends Class Super.(all classes are public)

Lets say I have a object of Super type as
Super superObject = new Sub1();

now for the superObject, is it possible to find which subclass the superObject extends in Java?

Since “SuperClass will not be aware of any SubClasses it has”, can you please tell me is my above question valid in the first place, or am I missing any basic concept?

Thanks in advance.