Eclipse error: java.util.Enumeration cannot be resolved
August 27th, 2009 in Eclipse Errors, Errors.

Loading ...
Problem: you get an error during build saying “Build error java.util.Enumeration cannot be resolved” even though you have the correct import statement.
Solution: Set the compiler compliance level to 1.4 (window->preferences->Java->compiler) and rebuild.

Tags: Eclipse, Errors
February 17th, 2011 at 5:18 am says:
hi ,
Just replace keyword enum with any other name. As its a keyword in 5.0 and above. You cant use it as identifier.