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.
feedback
|
|
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 module to hold your constants and then declare the constants within that.
| |||||||||||||||||
feedback
|
|
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. | |||||||||||||||||||
feedback
|
|
I'm surprised that no one has offered something like the following (harvested from the RAPI gem):
Which can be used like so:
Example:
This plays well in database scenarios, or when dealing with C style constants/enums (as is the case when using FFI, which RAPI makes extensive use of). Also, you don't have to worry about typos causing silent failures, as you would with using a hash-type solution. | |||||
feedback
|
|
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 | |||||||||
feedback
|
|
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. | |||||
feedback
|
|
Look at this: http://code.dblock.org/ShowPost.aspx?id=184 (slight improvement over http://www.rubyfleebie.com/enumerations-and-ruby/). Lets you write the following.
And of course
| |||
|
feedback
|
|
Most people use symbols (that's the | |||
|
feedback
|
|
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
| |||||
feedback
|
|
If you're worried about typos with symbols, make sure your code raises an exception when you access a value with a non-existent key. You can do this by using
or by making the hash raise an exception by default if you supply a non-existent key:
If the hash already exists, you can add on exception-raising behaviour:
Normally, you don't have to worry about typo safety with constants. If you misspell a constant name, it'll usually raise an exception. | |||
|
feedback
|
|
I using this approach:
I like it for the following advantages:
Symbols may me better cause you don't have to write the name of outer class, if you are using it in another class (MyClass::MyValue1) | |||
|
feedback
|
|
I have implemented enums like that
then its easy to do operations
...
...
| |||
|
feedback
|
|
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). | |||
|
feedback
|
|
I think the best way to implement enumeration like types is with symbols since the pretty much behave as integer (when it comes to performace, object_id is used to make comparisons ); you don't need to worry about indexing and they look really neat in your code xD | |||
|
feedback
|
Output: 1 - a | ||||
|
feedback
|