Friday, September 19, 2025
HomeLanguagesJavaJava Program to Access All the Constant Defined in the Enum

Java Program to Access All the Constant Defined in the Enum

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);

Java




// Java program to show the usage of  
// values() method of java enumeration  
    
enum Day{ 
    SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY; 
} 
    
class Main{ 
        
    public static void main(String args[]) 
    { 
       // Calling values()
       Day days[] = Day.values(); 
        
       for(Day d : days) 
       System.out.println( d ); 
    } 
}


Output

SUNDAY
MONDAY
TUESDAY
WEDNESDAY
THURSDAY
FRIDAY
SATURDAY
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32303 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6666 POSTS0 COMMENTS
Nicole Veronica
11841 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11898 POSTS0 COMMENTS
Shaida Kate Naidoo
6781 POSTS0 COMMENTS
Ted Musemwa
7059 POSTS0 COMMENTS
Thapelo Manthata
6740 POSTS0 COMMENTS
Umr Jansen
6745 POSTS0 COMMENTS