Possible Duplicate:
Java enum inheritance
I'm working with a library that has an enumerated type that's perfect for my uses, but the name is horrible and confusing. Can I simply inherit from this enum to create my own with a much nicer name?
public enum Settings extends JiggidyWapperfragNautchFrick.SkiddidyBoomCaFriglets {
}
Like so? IntelliJ complained when I tried to do this, but what would be the appropriate way to get the effect of what I'm proposing?