Every enum has name(), which gives a string with the name of enum member.
Given enum Suit{Heart, Spade, Club, Diamond}
, Suit.Heart.name()
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. It may be nanoseconds faster, but it is not safe, if the enum members change, as another developer may not be aware some code is relying on ordinal values (especially in the JSP page cited in the question, network and database overhead completely dominates the time, not using an integer over a string).