1 16 package org.apache.commons.lang.enum; 17 18 import java.util.Iterator; 19 import java.util.List; 20 import java.util.Map; 21 22 28 public class Extended2Enum extends Extended1Enum { 29 public static final Extended1Enum GAMMA = new Extended2Enum("Gamma"); 30 31 protected Extended2Enum(String color) { 32 super(color); 33 } 34 35 public static Extended1Enum getEnum(String name) { 36 return (Extended1Enum) getEnum(Extended2Enum.class, name); 37 } 38 39 public static Map getEnumMap() { 40 return getEnumMap(Extended2Enum.class); 41 } 42 43 public static List getEnumList() { 44 return getEnumList(Extended2Enum.class); 45 } 46 47 public static Iterator iterator() { 48 return iterator(Extended2Enum.class); 49 } 50 51 } 52 | Popular Tags |