← Back to Miscellaneous
Question 159
Enum Parse from Input
Enum Parse from Input
Read a string from input, convert it to uppercase, and use Enum.valueOf() to parse it into a Level enum constant. Expected Output: Level is HIGH Enum.valueOf(String) converts a string to the matching enum constant. It is case-sensitive, so always call toUpperCase() first to handle inputs like 'high' or 'High'. ⚠️ AUTO-INPUT MODE: The input stream will automatically contain 'high\n'. Use Scanner's next() to read it.
Expected Output:
Level is HIGH
Topics:
Miscellaneous
Code Editor
1
Tab to indent · Ctrl+Enter to run · Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.