I'm writing a class, which, at some point, has to have all its fields assigned from an other item of this class.

I did it through reflection:

        for(Field f:pg.getClass().getDeclaredFields()){
            f.set(this, f.get(pg));
        }

The problem is, that this class contains a field, which is final. I could skip it by name, but to me that seems not elegant at all.

What's the best way to check if a field is final in java using reflection?

link|improve this question

69% accept rate
feedback

4 Answers

up vote 15 down vote accepted

the best and the only one way is: Modifier.isFinal(f.getModifiers())

link|improve this answer
feedback

Have a look at Field#getModifiers().

link|improve this answer
feedback

You can use getModifiers() method on the Field variable:

if(f.getModifiers() & java.lang.reflect.Modifier.FINAL == java.lang.reflect.Modifier.FINAL)
{
    //this is final field
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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