Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've an enum type: ReportTypeEnum that get passed between methods in all my classes but I then need to pass this on the URL so I use the ordinal method to get the int value. After I get it in my other JSP page I need to convert it to back to an ReportTypeEnum so that I can continue passing it.

How can I convert ordinal to the ReportTypeEnum?

Using Java 6 EE.

share|improve this question
1  
There is no Java 6 EE, until now (AFAIK). There is Java SE 6, and Java EE 5. – Hosam Aly Mar 4 '09 at 9:39
I meant Java SE 6. – Lennie Mar 6 '09 at 9:25

5 Answers

up vote 122 down vote accepted
ReportTypeEnum value = ReportTypeEnum.values()[ordinal]
share|improve this answer
18  
Note that every call to values() returns a newly cloned array, so you may want to cache the array if it's going to be called in a critical region of code. – mattbh Apr 13 '12 at 6:59

This is almost certainly a bad idea. Certainly if the ordinal is de-facto persisted (e.g. because someone has bookmarked the URL) - it means that you must always preserve the enum ordering in future, which may not be obvious to code maintainers down the line.

Why not encode the enum using myEnumValue.name() (and decode via ReportTypeEnum.valueOf(s)) instead?

share|improve this answer
2  
much better idea – Boris Pavlović Mar 4 '09 at 9:48
4  
What if you change the name of the enum (but keep the ordering)? – Arne Evertsson Nov 11 '09 at 15:06
2  
@Arne - I think this is much less likely than some inexperienced person coming along and adding a value at either the start or its correct alphabetical/logical position. (By logical I mean for example TimeUnit values have a logical position) – oxbow_lakes Nov 11 '09 at 15:35
1  
I certainly prefer to force the enums order rather than the name of my enum...this is why I prefer to store the ordinal rather than the name of the enum in the database. Furthermore, it's better to use int manipulation rather than String... – Francois Mar 15 '11 at 16:06
3  
I agree. In a public API, changing the name of an Enum would break backward compatibility but changing the order would not. For that reason, it makes more sense to use the name as your "key" – Noel Oct 11 '11 at 21:31
show 1 more comment

You could use a static lookup table:

public enum Suit {
  spades, hearts, diamonds, clubs;

  private static final Map<Integer, Suit> lookup = new HashMap<Integer, Suit>();

  static{
    int ordinal = 0;
    for (Suit suit : EnumSet.allOf(Suit.class)) {
      lookup.put(ordinal, suit);
      ordinal+= 1;
    }
  }

  public Suit fromOrdinal(int ordinal) {
    return lookup.get(ordinal);
  }
}
share|improve this answer
1  
See also Enums. – trashgod Jun 24 '11 at 16:13

every enum has toString(), which gives a string with the name of enum member.

given enum Suit{Heart, Spade, Club, Diamond}, Suit.Heart.toString() will give "Heart".

every enum has a valueOf method, which takes an enum type and a string, to perform the reverse operation:

Enum.valueOf(Suit.class, "Heart") returns Suit.Heart.

Why anyone would use ordinals is beyond me...

share|improve this answer

Based upon Jan's answer but using an array instead of a HashMap. Also I prefer values() over EnumSet.allOf(Suit.class)); see other question about values vs. EnumSet.

public enum Suit {
    spades, hearts, diamonds, clubs;

    private static final Suit[] lookup;

    static {
        final Suit[] values = Suit.values();
        lookup = new Suit[values.length];
        int ordinal = 0;
        for (Suit suit : values) {
            lookup[ordinal] = suit;
            ordinal += 1;
        }
    }

    public Suit fromOrdinal(final int ordinal) {
        try {
            return lookup[ordinal];
        } catch (ArrayIndexOutOfBoundsException e) {
            return null;
        }
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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