public abstract class Enum extends 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.
|