function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
subbu.flex9@gmail.comsubbu.flex9@gmail.com 

class Hierarchy in Apex ?

I want to know Hirerchy of the Apex class ?

like   what is most super , sub class , like that .........

Santhosh KumarSanthosh Kumar

Salesforce doesn't have any support for Reflective programming like Java. So you cannot determine what is the super class for a given class or sub-class etc. If you looking to get this information outside of salesforce, you could possibly write a parser which can derive this information.