scjp « enum « Java Data Type Q&A





1. A SCJP Question on topic Enums    stackoverflow.com

From the SCJP Questions PDF book, I got this question..

1. enum Animals {
2. DOG("woof"), CAT("meow"), FISH("burble");
3. String sound;
4. Animals(String s) { sound = s; }
5. }
6. class TestEnum {
7. static Animals ...

2. scjp question on enum    stackoverflow.com

public enum Scale2 {

    GOOD('C') { 
        public char getGrade() { 
          ...