Is it possible for me to convert a String to an equivalent value in an Enumeration, using Java.
I can of course do this with a large if-else statement, but I would like to avoid this if possible.
Given this documentation:
http://download.oracle.com/javase/1.4.2/docs/api/java/util/Enumeration.html
I am not too hopeful that this is possible without ifs or a case statement.