In my application, every Foo has a Category. Foo.Category is an internal enum in class Foo. When creating a Foo on its given form page, the user selects a Category from a drop down typed to the enum. However, this choice is optional.
Now, on another page, I want to be able to search Foo by name, and also by Category. This search form has a CheckBoxMultipleChoice<Foo.Category> also typed to the same internal enum. The checked values are sent to a DAO which queries my database with a "where category in" clause.
I want to add a "Blank/ None" choice to the check boxes, so that when sent to the DAO I can add a "or where category is null" to the query, if checked. Since my check box is typed to the enum, is this even possible?
EDIT: Not sure if this will be important, but my enum has values designated by a SHORTNAME, but each has a String LongerAndMoreDescriptiveName, and the enum overrides toString() to return this value. The SHORTNAME is what I store in the database, and used in the where clauses, but the Longer is what is shown on the UI. I had briefly thought about changing to CheckBoxMultipleChoice and add the blank choice, but how would I then solve the discrepancy between values?
