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.
(int index)
| 182 | * 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. |
| 183 | */ |
| 184 | public final native char charAt(int index);//{ |
| 185 | // return value[offset + index]; |
| 186 | // } |
| 187 |
no outgoing calls