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.

link|improve this question

36% accept rate
2  
@auramo, good question, and great choice for the best answer. Love it or hate it, you get no type-safety and (at least in Ruby) no typo-safety. I was thrilled when I discovered enums in C# and later in Java (pick a value, but from these!), Ruby doesn't provide a real way to do that in any case at all. – Yar Mar 11 '10 at 9:57
feedback

14 Answers

up vote 74 down vote accepted

Two ways. Symbols (:foo notation) or constants (FOO notation).

Symbols are appropriate when you want to enhance readability without littering code with literal strings.

postal_code[:minnesota] = "MN"
postal_code[:new_york] = "NY"

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.

module Foo
  BAR = 1
  BAZ = 2
  BIZ = 4
end

flags = Foo::BAR | Foo::BAZ # flags = 3
link|improve this answer
1  
What if these enum is too be stored to the database? Will symbol notation works? I doubt... – Phương Nguyễn Jun 11 '10 at 3:44
I would use the constants approach if I were saving to a database. Of course then you have to do some sort of lookup when pulling the data back out of the DB. You could also use something like :minnesota.to_s when saving to a database to save the string version of the symbol. Rails, I believe, has some helper methods to deal with some of this. – mcl Jun 11 '10 at 12:40
2  
i like the 2nd idea very much. thank you! – Labuschin Aug 20 '10 at 12:22
what about order? – dfrankow Feb 17 at 15:04
2  
Wouldn't a module be better to group constants - as you're not going to be making any instances of it? – thomthom Mar 14 at 13:37
show 4 more comments
feedback

The most idiomatic way to do this is to use symbols. For example, instead of:

enum {
  FOO,
  BAR,
  BAZ
}

myFunc(FOO);

...you can just use symbols:

# You don't actually need to declare these, of course--this is
# just to show you what symbols look like.
:foo
:bar
:baz

my_func(:foo)

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.

link|improve this answer
16  
So the Ruby spirit is: "Typos will compile" – Max Howell Aug 3 '09 at 14:02
20  
Popular Ruby frameworks rely heavily on runtime metaprogramming, and performing too much load-time checking would take away most of Ruby's expressive power. To avoid problems, most Ruby programmers practice test-driven design, which will find not just typos but also logic errors. – emk Aug 20 '09 at 20:14
@emk, thanks for your comment, it really sums up the dynamic-lang crowd's thought on the thing. While I do think it's wrong, that's how it works :) – Yar Mar 5 '10 at 14:09
1  
@yar: Well, language design is a series of tradeoffs, and language features interact. If you want a good, highly-dynamic language, go with Ruby, write your unit tests first, and go with the spirit of the language. :-) If that's not what you're looking for, there are dozens of other excellent languages out there, each of which makes different tradeoffs. – emk Mar 10 '10 at 17:51
1  
@emk, I agree, but my personal issue is that I feel quite comfortable in Ruby, but I do not feel comfortable refactoring in Ruby. And now that I've started writing unit tests (finally), I realize that they are not a panacea: my guess is 1) that Ruby code doesn't get massively refactored that often, in practice and 2) Ruby is not the end-of-the-line in terms of dynamic languages, precisely because it's hard to refactor automatically. See my question 2317579 which got taken over, strangely, by the Smalltalk folks. – Yar Mar 10 '10 at 23:52
show 5 more comments
feedback

I'm surprised that no one has offered something like the following (harvested from the RAPI gem):

class Enum

  private

  def self.enum_attr(name, num)
    name = name.to_s

    define_method(name + '?') do
      @attrs & num != 0
    end

    define_method(name + '=') do |set|
      if set
        @attrs |= num
      else
        @attrs &= ~num
      end
    end
  end

  public

  def initialize(attrs = 0)
    @attrs = attrs
  end

  def to_i
    @attrs
  end
end

Which can be used like so:

class FileAttributes < Enum
  enum_attr :readonly,       0x0001
  enum_attr :hidden,         0x0002
  enum_attr :system,         0x0004
  enum_attr :directory,      0x0010
  enum_attr :archive,        0x0020
  enum_attr :in_rom,         0x0040
  enum_attr :normal,         0x0080
  enum_attr :temporary,      0x0100
  enum_attr :sparse,         0x0200
  enum_attr :reparse_point,  0x0400
  enum_attr :compressed,     0x0800
  enum_attr :rom_module,     0x2000
end

Example:

>> example = FileAttributes.new(3)
=> #<FileAttributes:0x629d90 @attrs=3>
>> example.readonly?
=> true
>> example.hidden?
=> true
>> example.system?
=> false
>> example.system = true
=> true
>> example.system?
=> true
>> example.to_i
=> 7

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.

link|improve this answer
Of course, operators such as |, & can be added too. – Charles May 30 '11 at 23:19
That's a great way to solve that particular problem, but the reason no one suggested it probably has to do with the fact that it's not much like C#/Java enums. – mcl Feb 17 at 14:21
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.


#server_roles.rb
module EnumLike

  def EnumLike.server_role
    server_Symb=[ :SERVER_CLOUD, :SERVER_DESKTOP, :SERVER_WORKSTATION]
    server_Enum=Hash.new
    i=0
    server_Symb.each{ |e| server_Enum[e]=i; i +=1}
    return server_Symb,server_Enum
  end

end


This can then be used like this


require 'server_roles'

sSymb, sEnum =EnumLike.server_role()

foreignvec[sEnum[:SERVER_WORKSTATION]]=8


This is can of course be made abstract and you can roll our own Enum class

link|improve this answer
Are you capitalizing the second word in variables (eg server_Symb) for a particular reason? Unless there's a particular reason, it's idiomatic for variables to be snake_case_with_all_lower_case, and for symbols to be :lower_case. – Andrew Grimm Mar 16 '11 at 23:03
1  
@Andrew; this example were taken from a real world thing and the network protocol documentation used xxx_Yyy, so the code in several languages used the same concept so one could follow changes of specification. – Jonke Mar 17 '11 at 19:55
Code golfing: server_Symb.each_with_index { |e,i| server_Enum[e] = i}. No need for i = 0. – Andrew Grimm Mar 17 '11 at 21:48
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.

link|improve this answer
I have never needed an enum in Ruby. Symbols and constants are idiomatic and solve the same problems, don't they? – Chuck Mar 4 '09 at 20:53
Probably Chuck; but googling for an enum in ruby won't get you that far. It will show you results for people's best attempt at a direct equivalent. Which makes me wonder, maybe there's something nice about having the concept wrapped together. – dlamblin Mar 5 '09 at 1:33
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.

class Gender
  include Enum

  Gender.define :MALE, "male"
  Gender.define :FEMALE, "female"
end

And of course

Gender.all
Gender::MALE
link|improve this answer
feedback

Most people use symbols (that's the :foo_bar syntax). They're sort of unique opaque values. Symbols don't belong to any enum-style type so they're not really a faithful representation of C's enum type but this is pretty much as good as it gets.

link|improve this answer
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 Set type, for instance:

>> enum = Set['a', 'b', 'c']
=> #<Set: {"a", "b", "c"}>
>> enum.member? "b"
=> true
>> enum.member? "d"
=> false
>> enum.add? "b"
=> nil
>> enum.add? "d"
=> #<Set: {"a", "b", "c", "d"}>
link|improve this answer
5  
Why not use symbols Set[:a, :b, :c]? – Yar Mar 11 '10 at 9:50
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 fetch rather than []:

my_value = my_hash.fetch(:key)

or by making the hash raise an exception by default if you supply a non-existent key:

my_hash = Hash.new do |hash, key|
  raise "You tried to access using #{key.inspect} when the only keys we have are #{hash.keys.inspect}"
end

If the hash already exists, you can add on exception-raising behaviour:

my_hash = Hash[[[1,2]]]
my_hash.default_proc = proc do |hash, key|
  raise "You tried to access using #{key.inspect} when the only keys we have are #{hash.keys.inspect}"
end

Normally, you don't have to worry about typo safety with constants. If you misspell a constant name, it'll usually raise an exception.

link|improve this answer
feedback

I using this approach:

MyEnum = [MyValue1 = 'value1', MyValue2 = 'value2']

I like it for the following advantages:

  1. It groups values visually as one whole
  2. It does some compilation-time checking (in contrast with just using symbols)
  3. I can easily access the list of all possible values: just MyEnum
  4. I can easily access distinct values: MyValue1
  5. It can be value of any time, not just Symbol

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)

link|improve this answer
feedback

I have implemented enums like that

module EnumType

  def self.find_by_id id
    if id.instance_of? String
      id = id.to_i
    end 
    values.each do |type|
      if id == type.id
        return type
      end
    end
    nil
  end

  def self.values
    [@ENUM_1, @ENUM_2] 
  end

  class Enum
    attr_reader :id, :label

    def initialize id, label
      @id = id
      @label = label
    end
  end

  @ENUM_1 = Enum.new(1, "first")
  @ENUM_2 = Enum.new(2, "second")

end

then its easy to do operations

EnumType.ENUM_1.label

...

enum = EnumType.find_by_id 1

...

valueArray = EnumType.values
link|improve this answer
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).

link|improve this answer
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

link|improve this answer
feedback
irb(main):016:0> num=[1,2,3,4]
irb(main):017:0> alph=['a','b','c','d']
irb(main):018:0> l_enum=alph.to_enum
irb(main):019:0> s_enum=num.to_enum
irb(main):020:0> loop do
irb(main):021:1* puts "#{s_enum.next} - #{l_enum.next}"
irb(main):022:1> end

Output:

1 - a
2 - b
3 - c
4 - d

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.