Package org.apache.commons.lang.mutable
Class MutableBoolean
- java.lang.Object
-
- org.apache.commons.lang.mutable.MutableBoolean
-
- All Implemented Interfaces:
Serializable,Comparable,Mutable
public class MutableBoolean extends Object implements Mutable, Serializable, Comparable
A mutablebooleanwrapper.- Since:
- 2.2
- Version:
- $Id: MutableBoolean.java 905707 2010-02-02 16:59:59Z niallp $
- See Also:
Boolean, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description 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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanbooleanValue()Returns the value of this MutableBoolean as a boolean.intcompareTo(Object obj)Compares this mutable to another in ascending order.booleanequals(Object obj)Compares this object to the specified object.ObjectgetValue()Gets the value as a Boolean instance.inthashCode()Returns a suitable hash code for this mutable.booleanisFalse()Checks if the current value isfalse.booleanisTrue()Checks if the current value istrue.voidsetValue(boolean value)Sets the value.voidsetValue(Object value)Sets the value from any Boolean instance.BooleantoBoolean()Gets this mutable as an instance of Boolean.StringtoString()Returns the String value of this mutable.
-
-
-
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 Object getValue()
Gets the value as a Boolean instance.
-
setValue
public void setValue(boolean value)
Sets the value.- Parameters:
value- the value to set
-
setValue
public void setValue(Object value)
Sets the value from any Boolean instance.- Specified by:
setValuein interfaceMutable- Parameters:
value- the value to set, not null- Throws:
NullPointerException- if the object is null
-
isTrue
public boolean isTrue()
Checks if the current value istrue.- Returns:
trueif the current value istrue- Since:
- 2.5
-
isFalse
public boolean isFalse()
Checks if the current value isfalse.- Returns:
trueif the current value isfalse- 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 istrueif and only if the argument is notnulland is anMutableBooleanobject that contains the samebooleanvalue as this object.
-
hashCode
public int hashCode()
Returns a suitable hash code for this mutable.
-
compareTo
public int compareTo(Object obj)
Compares this mutable to another in ascending order.- Specified by:
compareToin interfaceComparable- Parameters:
obj- 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
-
-