MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / toUpperCase

Method toUpperCase

vm/JavaAPI/src/java/lang/Character.java:523–525  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 15

setDesktopShortcutMethod · 0.95
toUpperCaseMethod · 0.95
normalizeFormNameMethod · 0.95
camelCaseCommandNameMethod · 0.95
normalizeLocaleMethod · 0.95
capitalizeMethod · 0.95
accessorNameMethod · 0.95
toUiidMethod · 0.95
foldCaseMethod · 0.95
androidTemplateMethod · 0.95
javaNameMethod · 0.95
artifactIdToMainNameMethod · 0.95

Calls

no outgoing calls

Tested by 1