First of all I'm far from my development machine.
Let assume I have:
public enum Num {
ONE,
TWO
}
And I have following code:
String name = Num.ONE.name();
Will name value stay the same after obfuscation? From the Enum
class code it should stay the same after obfuscation since it happens after compilation when the name string will be generated.
Am I right?