| java.lang.Object net.infonode.util.Enum
Enum | public class Enum implements Serializable,Writable(Code) | | Base class for enum classes.
Each enum value contains a name and an integer identifier.
author: Jesper Nordenberg version: $Revision: 1.8 $ $Date: 2005/02/16 11:28:14 $ |
Constructor Summary | |
protected | Enum(int value, String name) |
getName | public String getName()(Code) | | Return the name of this enum value.
the name of this enum value |
getValue | public int getValue()(Code) | | Returns the integer identifier for this enum value.
the integer identifier for this enum value |
|
|