What's the best way to implement the enum idiom in Ruby? I'm looking for something which I can use (almost) like the Java/C# enums.
|
|
Two ways. Symbols (:foo notation) or constants (FOO notation). Symbols are appropriate when you want to enhance readability without littering code with literal strings.
Constants are appropriate when you have an underlying value that is important. Just declare a class to hold your constants and then declare the constants within that.
|
||
|
|
|
|
The most idiomatic way to do this is to use symbols. For example, instead of:
...you can just use symbols:
This is a bit more open-ended than enums, but it fits well with the Ruby spirit. Symbols also perform very well. Comparing two symbols for equality, for example, is much faster than comparing two strings. |
||||||||
|
|
|
Most people use symbols (that's the |
||
|
|
|
|
It all depends how you use Java or C# enums. How you use it will dictate the solution you'll choose in Ruby. Try the native
|
||
|
|
|
|
Symbols is the ruby way. However, sometimes one need to talk to some C code or something or Java that expose some enum for various things.
This can then be used like this
This is can of course be made abstract and you can roll our own Enum class |
||
|
|
|
|
Someone went ahead and wrote a ruby gem called Renum. It claims to get the closest Java/C# like behavior. Personally I'm still learning Ruby, and I was a little shocked when I wanted to make a specific class contain a static enum, possibly a hash, that it wasn't exactly easily found via google. |
||||
|
|
|
Another approach is to use a Ruby class with a hash containing names and values as described in the following RubyFleebie blog post. This allows you to convert easily between values and constants (especially if you add a class method to lookup the name for a given value). |
||
|
|
