(int ch)
| 207 | /// such that: this.charAt( |
| 208 | /// ) == ch is true. If no such character occurs in this string, then -1 is returned. |
| 209 | public int indexOf(int ch){ |
| 210 | return 0; //TODO codavaj!! |
| 211 | } |
| 212 | |
| 213 | /// Returns the index within this string of the first occurrence of the specified character, starting the search at the specified index. |
| 214 | /// If a character with value ch occurs in the character sequence represented by this String object at an index no smaller than fromIndex, then the index of the first such occurrence is returned--that is, the smallest value k such that: |
no outgoing calls
no test coverage detected