So in a class (ImportantClass123) I have this:
public AnotherImportantClass aReallyImportantClass;
How do I return
AnotherImportantClass
via knowledge of what its named as a field:
aReallyImportantClass
Something like
ImportantClass123.getFieldWithName("aReallyImportantClass");
?
How would I write getFieldWithName? and what would be its return type? Class?
You can use reflection to get to that information. The method
Class.getField(String)
returns aField
object for the public field given by name. And the Field object has a methodgetType()
that will give you the type of that field: