KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > thoughtworks > xstream > converters > enums > PolymorphicEnum


1 package com.thoughtworks.xstream.converters.enums;
2
3 enum PolymorphicEnum {
4     A() {
5         String JavaDoc fruit() {
6             return "apple";
7         }
8     },
9     B() {
10         String JavaDoc fruit() {
11             return "banana";
12         }
13     };
14
15     abstract String JavaDoc fruit();
16 }
17
Popular Tags