blob: df6a4db38eeca16bcce79f1db61ec9a8443b1c50 [file] [log] [blame]
enum AccessEnumMemberThroughThis {
CONSTANT("constant");
private String label;
public String getLabel() {
return this.label;
}
public String getLabel2() {
return this.getLabel();
}
}