document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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 a;
  8. public static void main(String [] args) {
  9. System.out.println(a.DOG.sound + " " + a.FISH.sound);
  10. }
  11. }
');