(int index)
| 120 | |
| 121 | /// Returns the character at the specified index. An index ranges from 0 to length() - 1. The first character of the sequence is at index 0, the next at index 1, and so on, as for array indexing. |
| 122 | public char charAt(int index){ |
| 123 | return ' '; //TODO codavaj!! |
| 124 | } |
| 125 | |
| 126 | /// Compares two strings lexicographically. The comparison is based on the Unicode value of each character in the strings. The character sequence represented by this String object is compared lexicographically to the character sequence represented by the argument string. The result is a negative integer if this String object lexicographically precedes the argument string. The result is a positive integer if this String object lexicographically follows the argument string. The result is zero if the strings are equal; compareTo returns 0 exactly when the |
| 127 | /// method would return true. |
no outgoing calls
no test coverage detected