What is the best way to have a enum type represent a set of strings, Example:
enum Strings{
STRING_ONE("ONE"), STRING_TWO("TWO")
}
so I can use them as Strings?
Thanks
|
|
|
I don't know what you want to do, but this is how I actually translated your example code....
Alternatively, you can create a getter method for text. You can now do |
|||||||||||||||
|
|
Use its
yields |
|||||||||||||||
|
|
Either set the enum name to be the same as the string you want or, more generally,you can associate arbitrary attributes with your enum values:
It's important to have the constants at the top, and the methods/attributes at the bottom. |
|||||||
|
|
Custom String Values for Enum from http://javahowto.blogspot.com/2006/10/custom-string-values-for-enum.html The default string value for java enum is its face value, or the element name. However, you can customize the string value by overriding toString() method. For example,
Running the following test code will produce this:
|
|||
|
|
|
Depending on what you mean by "use them as Strings", you might not want to use an enum here. In most cases, the solution proposed by The Elite Gentleman will allow you to use them through their toString-methods, e.g. in
|
|||||||
|