Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,851 questions

51,772 answers

573 users

How to iterate over an enum in Java

1 Answer

0 votes
public class MyClass {
    public enum PLanguage{
        JAVA(1), PYTHON(2), C(3), CPP(4), CSHARP(5);
   
        private int value;
       
        private PLanguage(int value){
            this.value = value;
        }
       
        public int getRank(){
            return value;
        }
    }
    public static void main(String args[]) {
        for (PLanguage pl : PLanguage.values()) {
            System.out.println(pl.name() + " : " + pl.value);
        }
    }
}




/*
run:

JAVA : 1
PYTHON : 2
C : 3
CPP : 4
CSHARP : 5

*/

 



answered Nov 9, 2021 by avibootz

Related questions

2 answers 173 views
1 answer 72 views
72 views asked Mar 9, 2025 by avibootz
1 answer 70 views
70 views asked Mar 9, 2025 by avibootz
2 answers 165 views
2 answers 168 views
3 answers 171 views
171 views asked Jan 21, 2022 by avibootz
4 answers 153 views
153 views asked Nov 23, 2023 by avibootz
...