Navigating Class Hierarchies with Java Reflection

Java Reflection makes it easy to find fields, methods, and constructors in your Java classes. Most of the time a single class is all you need to look at. However, sometimes you need to navigate through a class hierarchy. In this post, I’ll show you how to use Java Reflection to navigate class hierarchies. You’ll […]