(java.lang.Object anObject)
| 166 | |
| 167 | /// 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. |
| 168 | public boolean equals(java.lang.Object anObject){ |
| 169 | return false; //TODO codavaj!! |
| 170 | } |
| 171 | |
| 172 | /// Compares this String to another String, ignoring case considerations. Two strings are considered equal ignoring case if they are of the same length, and corresponding characters in the two strings are equal ignoring case. |
| 173 | /// Two characters c1 and c2 are considered the same, ignoring case if at least one of the following is true: The two characters are the same (as compared by the == operator). Applying the method Character.toUpperCase(char) to each character produces the same result. Applying the method Character.toLowerCase(char) to each character produces the same result. |
no outgoing calls