Compares this string to the specified object. The result is true if and only if the argument is not null and is a String object that represents the same sequence of characters as this object.
(java.lang.Object anObject)
| 265 | * Compares this string to the specified object. The result is true if and only if the argument is not null and is a String object that represents the same sequence of characters as this object. |
| 266 | */ |
| 267 | public native boolean equals(java.lang.Object anObject); |
| 268 | /*public boolean equals(java.lang.Object anObject){ |
| 269 | if(anObject == this) { |
| 270 | return true; |
no outgoing calls