VOOZH about

URL: https://www.geeksforgeeks.org/java/java-program-to-access-all-the-constant-defined-in-the-enum/

⇱ Java Program to Access All the Constant Defined in the Enum - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Java Program to Access All the Constant Defined in the Enum

Last Updated : 23 Jul, 2025

An enum is a special class that represents a group of constants. To create an enum, use the enum keyword (instead of class or interface), and separate the constants with a comma.

enum Day{

SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY;
}

values() method can be used to return all values present inside enum.

We can't see this method in Javadoc because the compiler adds it. The compiler automatically adds some special methods when it creates an enum. For example, they have a static values method that returns an array containing all the enum's values in the order they are declared.

So the values() function list all values of the enumeration.

Day days[] = Day.values(); 

for(Day d : days) 
 System.out.print(d);

Output
SUNDAY
MONDAY
TUESDAY
WEDNESDAY
THURSDAY
FRIDAY
SATURDAY
Comment
Article Tags: