I have been trying to determine the type of a field in a class. I\'ve seen all the introspection methods but haven\'t quite figured out how to do it. This is going to be use
take this snippet:
for (Field field : Person.class.getFields()) { System.out.println(field.getType()); }
the key class is Field