What is the best way to use the values stored in an Enum as String literals?
For example:
public enum Modes {
some-really-long-string,
mode2,
mode3
}
Then later I could use Mode.mode1 to return its string representation as: “mode1”. Without having to keep calling Mode.model.toString().
EDIT: some more explanation... What I like to have is when users call certain functions, they need to specify a mode type (using this as an example). So instead of remembering the long-string that a particular mode is represented as, they can just call Mode.mode1, for example.
EDIT: I guess the answer finally is it can’t be done. Better off to use a class definition with static variables, in order to achieve the effect I want.
Thnx!