|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.lang.mutable.MutableBoolean
public class MutableBoolean
A mutable boolean
wrapper.
Boolean
,
Serialized FormConstructor 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(Object obj)
Compares this mutable to another in ascending order. |
boolean |
equals(Object obj)
Compares this object to the specified object. |
Object |
getValue()
Gets the value as a Boolean instance. |
int |
hashCode()
Returns a suitable hashcode for this mutable. |
void |
setValue(boolean value)
Sets the value. |
void |
setValue(Object value)
Sets the value from any Boolean instance. |
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 |
---|
public MutableBoolean()
public MutableBoolean(boolean value)
value
- a value.public MutableBoolean(Boolean value)
value
- a value.
NullPointerException
- if the object is nullMethod Detail |
---|
public boolean booleanValue()
public int compareTo(Object obj)
compareTo
in interface Comparable
obj
- the mutable to compare to
ClassCastException
- if the argument is not a MutableIntpublic boolean equals(Object obj)
true
if and only if the argument is
not null
and is an MutableBoolean
object that contains the same
boolean
value as this object.
equals
in class Object
obj
- the object to compare with.
true
if the objects are the same; false
otherwise.public Object getValue()
getValue
in interface Mutable
public int hashCode()
hashCode
in class Object
1231
if this object represents true
; returns the integer
1237
if this object represents false
.public void setValue(boolean value)
value
- the value to setpublic void setValue(Object value)
setValue
in interface Mutable
value
- the value to set
NullPointerException
- if the object is null
ClassCastException
- if the type is not a Boolean
public String toString()
toString
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |