public static valueOf(enumType as Type, stateName as String) as Enum:
Resolves the canonical singleton for a symbolic enum state.
| Parameter | Description |
|---|---|
enumType | Concrete enum type. |
stateName | Exact state name. |
Canonical state singleton.
enum Color: RED assert Enum.valueOf(Color.type, "RED") is Color.RED