Returns the value of this Boolean object as a boolean primitive.
()
| 51 | * Returns the value of this Boolean object as a boolean primitive. |
| 52 | */ |
| 53 | public boolean booleanValue(){ |
| 54 | return value; |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Returns true if and only if the argument is not null and is a Boolean object that represents the same boolean value as this object. |
no outgoing calls