Followup of #11 that should enhance the functionality implemented there for such enums: ```scala object ThingsWithRenaming extends Enumeration { type ThingWithRenaming = Value val Pizza = Value("PIZZA") val TV = Value("TV") val Radio = Value("RADIO") } ```