vote up 4 vote down star

Hi,

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.

flag

60% accept rate
There is no Java 6 EE, until now (AFAIK). There is Java SE 6, and Java EE 5. – Hosam Aly Mar 4 at 9:39
I meant Java SE 6. – Lennie Mar 6 at 9:25

2 Answers

vote up 6 vote down check
ReportTypeEnum value = ReportTypeEnum.values()[ordinal]
link|flag
vote up 6 vote down

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

Your Answer

Get an OpenID
or

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