how to create the static enum like below
static enum Test{
employee-id,
employeeCode
}
As of now, I am getting errors.
|
|
|
This is not possible with Java, because each item has to be a valid identifier (and valid Java identifiers may not contain dashes). The closest thing would be adding a custom property to each enum value or override the
|
|||||||||
|
|
This is not specific to enums. This applies to all identifiers in Java: class names, method names, variable names, etcetera. Hyphens are simply not allowed. You can find all valid characters in JLS 3.8. To illustrate the problem:
What would you expect to happen here? |
|||
|
|
|
You can not do this. Enum constants must be legal Java identifiers. Legal Java identifiers can not contain |
|||
|
|
|
You cannot declare the enum constant with a hyphen. If you hyphen to be retrieved as the value of the enum, you should have a value method in enum which you either use in its toString method or access this method on the enum to get the hyphen value |
|||
|
|