I am writing an analyzer for Java class files using ASM. One of the things I want to determine is what the modifiers (public, static, final?) of the fields in a class are. But I am not sure how to do this.
In the documentation i found the opcodes of the modifiers, which seems to correlate with the acces value of the FieldNode class. But I don't see how I derive the modifiers of the field form this value.
Any suggestions?