()
| 333 | |
| 334 | /// Returns the length of this string. The length is equal to the number of 16-bit Unicode characters in the string. |
| 335 | public int length(){ |
| 336 | return 0; //TODO codavaj!! |
| 337 | } |
| 338 | |
| 339 | /// Tests if two string regions are equal. |
| 340 | /// A substring of this String object is compared to a substring of the argument other. The result is true if these substrings represent character sequences that are the same, ignoring case if and only if ignoreCase is true. The substring of this String object to be compared begins at index toffset and has length len. The substring of other to be compared begins at index ooffset and has length len. The result is false if and only if at least one of the following is true: toffset is negative. ooffset is negative. toffset+len is greater than the length of this String object. ooffset+len is greater than the length of the other argument. There is some nonnegative integer k less than len such that: |
no outgoing calls