Enumpublic abstract class Enum extends Object implements SerializableGeneral support for 'enumerated' data types.
Name searches are case insensitive. |
Fields Summary |
---|
private static final Hashtable | types | protected static Log | log | private final Type | type | public final int | value | public final String | name |
Constructors Summary |
---|
protected Enum(Type type, int value, String name)
this.type = type;
this.value = value;
this.name = name.intern();
|
|