The values in my enum are words that need to have spaces in them, but enums can\'t have spaces in their values so it\'s all bunched up. I want to override
enum
You still have an option to implement in your enum this:
public static > T valueOf(Class enumType, String name){...}