I have a class called Bird that is composed of 3 string fields, each of which is the name in a different language, say Bird.lang1, Bird.lang2, Bird.lang3. And I have an instance of Bird called allbirds.
Now I want to make a list of strings ListOfAllBirds with the names of all birds, in the language the user choices, that is stored in the lang variable, whose value is one of lang1, lang2, lang3. And I need to do this hundreds of times (call this number of times N).
Of course, I can do an iterator over all Bird elements, and add the corresponding field to that of lang. But this implies in 3 x N x Bird.size() (that is, hundreds of thousands!!) conditional queries to test the language the user choose.
Can I do something like
varfield = lang.toField();
for (Bird birdy : allbirds)
ListOfAllBirds.add(birdy.varfield);
That is, can I make a reference to a field with a variable?? This would save me tons of conditional queries!
Thanks!

langis a String. – Luis A. Florit Dec 9 '12 at 0:50intcorresponding to each language, and take that approach. – Vulcan Dec 9 '12 at 0:52