convert an enum name to a JSONValue
Enums are serialized by name.
enum Category { one, two } assert(Category.one.toJSON.str == "one"); assert(Category.two.toJSON.str == "two");
See Implementation
convert an enum name to a JSONValue