public abstract class Enum
extends java.lang.Object
Each java mapped enum class provides static member of this class which represents the enum values. You cannot create an object of this class or subclass direct, to avoid enum values with integer values outside the defined range.
| Modifier | Constructor and Description |
|---|---|
protected |
Enum(int value)
Constructs an enum value.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue()
Get the integer value of an enum value.
|