Is there any easy way to achieve this.
Let's say I have an array of string with the name of POJO's in there and I"m trying to print all the list of attributes, is there any way to achieve this easily?\
String [] nameofClass;
for(String name:nameofClass)
name.class.getDeclaredFields();
Thanks