What is the recommended practice for taking a Java enum that has say 1300 values and putting it into organized groups? I know you can\'t just extends the enum group, so are
I would use an interface which these instances all share, then you can use any number of enums or load them from another data source such as a file or database.