show/hide this revision's text 2 Added enumeration -- didn't realize Java supported them.

Although not Java-specific, my own preference in this scenario is to define a ThreeState class or enumeration and use it -- just as you mentioned, a True, a False and an Undefined (or Default, or Unset, as your domain-specific terminology dictates). It feels better, more natural and more self-documenting than representing unset/undefined with null.

show/hide this revision's text 1

Although not Java-specific, my own preference in this scenario is to define a ThreeState class and use it -- just as you mentioned, a True, a False and an Undefined (or Default, or Unset, as your domain-specific terminology dictates). It feels better, more natural and more self-documenting than representing unset/undefined with null.