Best way to define true, false, unset state - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T14:12:51Zhttp://stackoverflow.com/feeds/question/314800http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/314800/best-way-to-define-true-false-unset-state3Best way to define true, false, unset stateTom Martin2008-11-24T17:11:18Z2008-11-24T18:29:49Z
<p>If you have a situation where you need to know where a boolean value wasn't set (for example if that unset value should inherit from a parent value) the Java boolean primitive (and the equivalent in other languages) is clearly not adequate.</p>
<p>What's the best practice to achieve this? Define a new simple class that is capable of expressing all three states or use the Java Boolean class and use null to indicate the unset state?</p>
http://stackoverflow.com/questions/314800/best-way-to-define-true-false-unset-state/314809#31480911Answer by Johannes Schaub - litb for Best way to define true, false, unset stateJohannes Schaub - litb2008-11-24T17:13:12Z2008-11-24T17:36:52Z<pre><code>Boolean a = true;
Boolean b = false;
Boolean c = null;
</code></pre>
<p>I would use that. It's the most straight-forward.</p>
<p>Another way is to use an enumeration. Maybe that's even better and faster, since no boxing is required:</p>
<pre><code>public enum ThreeState {
TRUE,
FALSE,
TRALSE
};
</code></pre>
<p>There is the advantage of the first that users of your class doesn't need to care about your three-state boolean. They can still pass <code>true</code> and <code>false</code>. If you don't like the <code>null</code>, since it's telling rather little about its meaning here, you can still make a <code>public static final Boolean tralse = null;</code> in your class.</p>
http://stackoverflow.com/questions/314800/best-way-to-define-true-false-unset-state/314810#3148104Answer by John Rudy for Best way to define true, false, unset stateJohn Rudy2008-11-24T17:13:21Z2008-11-24T18:28:11Z<p>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 <code>null</code>.</p>
http://stackoverflow.com/questions/314800/best-way-to-define-true-false-unset-state/314814#314814-2Answer by Steve B. for Best way to define true, false, unset stateSteve B.2008-11-24T17:15:13Z2008-11-24T17:15:13Z<p>java.lang.Boolean does this for you. There are static constants Boolean.TRUE, Boolean.False. </p>
<p>private Boolean myBoolean;</p>
<p>should be all you need.Note that Boolean.TRUE will pass an equivalence test but is distinct from "true" (which gets autoboxed to TRUE). </p>
http://stackoverflow.com/questions/314800/best-way-to-define-true-false-unset-state/314816#3148166Answer by Chris Simpson for Best way to define true, false, unset stateChris Simpson2008-11-24T17:16:17Z2008-11-24T17:16:17Z<p>The nullable boolean gets my vote</p>
http://stackoverflow.com/questions/314800/best-way-to-define-true-false-unset-state/314818#3148180Answer by Claudiu for Best way to define true, false, unset stateClaudiu2008-11-24T17:16:45Z2008-11-24T17:16:45Z<p>It depends. Here you mention it would be unset if it has to inherit its value from a parent value. Do you have some kind of data hierarchy? Something like this:</p>
<pre><code>Parent a {
boolean val = true;
boolean val2 = false;
}
Child b {
boolean val = false;
//here val2 should be unset!
}
</code></pre>
<p>In this case, if it's possible, I'd say simply don't include val2 in the Child, and have your lookup logic be such that if it doesn't find the variable, it searches the parents for the value.</p>
http://stackoverflow.com/questions/314800/best-way-to-define-true-false-unset-state/314822#3148220Answer by Hates_ for Best way to define true, false, unset stateHates_2008-11-24T17:17:46Z2008-11-24T17:17:46Z<p>Using nulls to represent the state of something is poor design. It's undescriptive and hard to maintain. I would rather have a State object with a default state if nothing has been explicitly set on it. For example:</p>
<pre><code>if(state == null) {
doSomething();
}
</code></pre>
<p>This doesn't tell me anything about what the expected state is. Something more like this makes it more clear.</p>
<pre><code>if(state.awaitingSet()) {
doSomething();
}
</code></pre>
<p>Not to mention extensible. What happens when you need a <em>fourth</em> state? </p>
http://stackoverflow.com/questions/314800/best-way-to-define-true-false-unset-state/314980#314980-1Answer by WolfmanDragon for Best way to define true, false, unset stateWolfmanDragon2008-11-24T18:29:49Z2008-11-24T18:29:49Z<p>In the Parent class initiate the boolean to null and in the child class build a method to check to see if the boolean has been set</p>
<p>in Parent class </p>
<pre><code>private Boolean a = null;
public void setA(Boolean a) {
this.a = a;
}
public Boolean getA() {
return a;
}
</code></pre>
<p>In the Child Class </p>
<pre><code>if (a == true)
{
dothis;
}
else if (a == false)
{
dothat;
}
else
{
assert false : "Boolean a has not been set";
}
</code></pre>
<p>Make sure that assertions are turned on. Assertions are only for the development cycle and test cycle, they are not for runtime exceptions.</p>