Converts the character argument to uppercase; if the character has no uppercase equivalent, the character itself is returned. Note that by default CLDC only supports the ISO Latin-1 range of characters.
(char ch)
| 521 | * Note that by default CLDC only supports the ISO Latin-1 range of characters. |
| 522 | */ |
| 523 | public static char toUpperCase(char ch){ |
| 524 | return (char) toUpperCase((int) ch); |
| 525 | } |
| 526 | |
| 527 | /** |
| 528 | * Returns the upper case equivalent for the specified code point if the |
no outgoing calls