Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Bit of a wierd requirement.

public class DummyClass{
   public static final DummyClass var1;
   public static final DummyClass var2;
   public static final DummyClass var3;
    .
    .
    .
   public static final DummyClass var100;
}

Now from outside of this class can we pool this var's into a single array or list, so that I can iterate over them? Like if i do something like

List<DummyClass> dummyList = *some op*; //I want value of some op.

I should be able to access var1...var100

share|improve this question
I cannot change the source of DummyClass. – Chandra Dec 17 '10 at 0:36
1  
I would look into using reflection. – Robert Dec 17 '10 at 0:38
Can you make it an enum? – Tom Hawtin - tackline Dec 17 '10 at 1:12
@Tom As I said, I do not have access to source file. – Chandra Dec 17 '10 at 2:10

1 Answer

up vote 11 down vote accepted

You could use reflection:

Field[] fields = DummyClass.class.getDeclaredFields();
for (Field f : fields) {
    if (Modifier.isStatic(f.getModifiers() && isRightName(f.getName()) {
        doWhatever(f);
    } 
}
share|improve this answer
That works for me, thanks :) – Chandra Dec 17 '10 at 0:54
1  
@Chandra Please mark an aswer correct, if you think its correct solution – Ratna Dinakar Dec 17 '10 at 1:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.