So I have a class called Test:
public class Test{
    protected String name = "boy";
    protected String mainAttack = "one";
    protected String secAttack = "two";
    protected String mainType"three";
    protected String typeSpeak = "no spoken word in super class";
//Somehow put all the class variables in an Array of some sort
    String[] allStrings = ??(all class' strings);
//(and if you feel challenged, put in ArrayList without type declared.
//So I could put in, not only Strings, but also ints etc.)
    public void Tester(){
    //Somehow loop through array(list) and print values (for-loop?)
    }
}
As you can see, I want to put all the class variables in an Array or ArrayList (or something similar) automatically. And next I want to be able to loop through the array and print/get the values. Preferably using an enhanced-for loop.
 
     
     
     
     
     
    