Represents an enumerated type as described by JDK 1.5. Implementing classes
are expected to provide the following methods:
public static final List<EnumType> VALUES;
public static <EnumType> valueOf(String s);
public static <EnumType> valueOf(int i);
public final List<EnumType> family();
public final String compareTo(Object o);
public final String equals(Object o);
public final int hashcode();
public String toString();
protected final Object clone(Object o) throws CloneNotSupportedException
protected final Object readResolve() throws ObjectStreamException;
author: Adrian Price |