CJCoding With Joseph
15per day

Enum Loop Values

Use a for-each loop with Enum.values() to iterate over all constants in the Status enum and print each one.

Expected Output:
NEW
IN_PROGRESS
DONE

Every Java enum provides a static values() method that returns an array of all constants in declaration order. Printing an enum constant directly calls its toString(), which returns the constant name.

Expected Output:

NEW
IN_PROGRESS
DONE
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.