up vote 28 down vote favorite
3
share [g+] share [fb]

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.

link|improve this question

54% accept rate
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
feedback

3 Answers

up vote 51 down vote accepted
ReportTypeEnum value = ReportTypeEnum.values()[ordinal]
link|improve this answer
feedback

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?

link|improve this answer
1  
much better idea – Boris Pavlović Mar 4 '09 at 9:48
I agree, it's the better solution. – Joachim Sauer Mar 4 '09 at 12:57
2  
What if you change the name of the enum (but keep the ordering)? – Arne Evertsson Nov 11 '09 at 15:06
1  
@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
show 1 more comment
feedback

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);
  }
}
link|improve this answer
See also Enums. – trashgod Jun 24 '11 at 16:13
feedback

Your Answer

 
or
required, but never shown

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