โ Back to Miscellaneous
Question 160
Enum Ordinal and Name
Enum Ordinal and Name
Use enum built-in methods to print the name and zero-based ordinal position of a Season constant. Expected Output: Name: FALL Ordinal: 2 Every enum provides name() which returns the constant name as a String, and ordinal() which returns its position in the declaration order. The enum Season is declared: SPRING=0, SUMMER=1, FALL=2, WINTER=3.
Expected Output:
Name: FALL Ordinal: 2
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.