org.apache.commons.lang3.mutable
Class MutableBoolean

java.lang.Object
  extended by org.apache.commons.lang3.mutable.MutableBoolean
All Implemented Interfaces:
Serializable, Comparable<MutableBoolean>, Mutable<Boolean>

public class MutableBoolean
extends Object
implements Mutable<Boolean>, Serializable, Comparable<MutableBoolean>

A mutable boolean wrapper.

Note that as MutableBoolean does not extend Boolean, it is not treated by String.format as a Boolean parameter.

Since:
2.2
Version:
$Id: MutableBoolean.java 1160571 2011-08-23 07:36:08Z bayard $
See Also:
Boolean, Serialized Form

Constructor Summary
MutableBoolean()
          Constructs a new MutableBoolean with the default value of false.
MutableBoolean(boolean value)
          Constructs a new MutableBoolean with the specified value.
MutableBoolean(Boolean value)
          Constructs a new MutableBoolean with the specified value.
 
Method Summary
 boolean booleanValue()
          Returns the value of this MutableBoolean as a boolean.
 int compareTo(MutableBoolean other)
          Compares this mutable to another in ascending order.
 boolean equals(Object obj)
          Compares this object to the specified object.
 Boolean getValue()
          Gets the value as a Boolean instance.
 int hashCode()
          Returns a suitable hash code for this mutable.
 boolean isFalse()
          Checks if the current value is false.
 boolean isTrue()
          Checks if the current value is true.
 void setValue(boolean value)
          Sets the value.
 void setValue(Boolean value)
          Sets the value from any Boolean instance.
 Boolean toBoolean()
          Gets this mutable as an instance of Boolean.
 String toString()
          Returns the String value of this mutable.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MutableBoolean

public MutableBoolean()
Constructs a new MutableBoolean with the default value of false.


MutableBoolean

public MutableBoolean(boolean value)
Constructs a new MutableBoolean with the specified value.

Parameters:
value - the initial value to store

MutableBoolean

public MutableBoolean(Boolean value)
Constructs a new MutableBoolean with the specified value.

Parameters:
value - the initial value to store, not null
Throws:
NullPointerException - if the object is null
Method Detail

getValue

public Boolean getValue()
Gets the value as a Boolean instance.

Specified by:
getValue in interface Mutable<Boolean>
Returns:
the value as a Boolean, never null

setValue

public void setValue(boolean value)
Sets the value.

Parameters:
value - the value to set

setValue

public void setValue(Boolean value)
Sets the value from any Boolean instance.

Specified by:
setValue in interface Mutable<Boolean>
Parameters:
value - the value to set, not null
Throws:
NullPointerException - if the object is null

isTrue

public boolean isTrue()
Checks if the current value is true.

Returns:
true if the current value is true
Since:
2.5

isFalse

public boolean isFalse()
Checks if the current value is false.

Returns:
true if the current value is false
Since:
2.5

booleanValue

public boolean booleanValue()
Returns the value of this MutableBoolean as a boolean.

Returns:
the boolean value represented by this object.

toBoolean

public Boolean toBoolean()
Gets this mutable as an instance of Boolean.

Returns:
a Boolean instance containing the value from this mutable, never null
Since:
2.5

equals

public boolean equals(Object obj)
Compares this object to the specified object. The result is true if and only if the argument is not null and is an MutableBoolean object that contains the same boolean value as this object.

Overrides:
equals in class Object
Parameters:
obj - the object to compare with, null returns false
Returns:
true if the objects are the same; false otherwise.

hashCode

public int hashCode()
Returns a suitable hash code for this mutable.

Overrides:
hashCode in class Object
Returns:
the hash code returned by Boolean.TRUE or Boolean.FALSE

compareTo

public int compareTo(MutableBoolean other)
Compares this mutable to another in ascending order.

Specified by:
compareTo in interface Comparable<MutableBoolean>
Parameters:
other - the other mutable to compare to, not null
Returns:
negative if this is less, zero if equal, positive if greater where false is less than true

toString

public String toString()
Returns the String value of this mutable.

Overrides:
toString in class Object
Returns:
the mutable value as a string


Copyright © 2001-2011 The Apache Software Foundation. All Rights Reserved.