public class MutableBoolean extends java.lang.Object implements Mutable, java.io.Serializable, java.lang.Comparable
boolean wrapper.Boolean,
Serialized Form| Constructor and Description |
|---|
MutableBoolean()
Constructs a new MutableBoolean with the default value of false.
|
MutableBoolean(boolean value)
Constructs a new MutableBoolean with the specified value.
|
MutableBoolean(java.lang.Boolean value)
Constructs a new MutableBoolean with the specified value.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
booleanValue()
Returns the value of this MutableBoolean as a boolean.
|
int |
compareTo(java.lang.Object obj)
Compares this mutable to another in ascending order.
|
boolean |
equals(java.lang.Object obj)
Compares this object to the specified object.
|
java.lang.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(java.lang.Object value)
Sets the value from any Boolean instance.
|
java.lang.String |
toString()
Returns the String value of this mutable.
|
public MutableBoolean()
public MutableBoolean(boolean value)
value - a value.public MutableBoolean(java.lang.Boolean value)
value - a value.java.lang.NullPointerException - if the object is nullpublic boolean booleanValue()
public int compareTo(java.lang.Object obj)
compareTo in interface java.lang.Comparableobj - the mutable to compare tojava.lang.ClassCastException - if the argument is not a MutableIntpublic boolean equals(java.lang.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 java.lang.Objectobj - the object to compare with.true if the objects are the same; false otherwise.public java.lang.Object getValue()
public int hashCode()
hashCode in class java.lang.Object1231 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(java.lang.Object value)
public java.lang.String toString()
toString in class java.lang.ObjectCopyright © 2001-2014 - Apache Software Foundation