String matches the Stringer interface, and returns the name of the value.
()
| 23 | type Enum interface { |
| 24 | // String matches the Stringer interface, and returns the name of the value. |
| 25 | String() string |
| 26 | // Parse takes a name and sets the value to match the name. |
| 27 | Parse(value string) error |
| 28 | } |
no outgoing calls