Method toTitleCase(char ch)
Return type: char
Member of: java.lang.Character
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 return "" + Character.toTitleCase(str.charAt(0)) + str.substring(1);
2 bs.setChar(Character.toTitleCase(c));
3 c1!=Character.toTitleCase(c2)) return false;
4 buffer.append(Character.toTitleCase(ch));
5 name.append(Character.toTitleCase(s.charAt(0)));
6 buffer.append(Character.toTitleCase(ch));
7 buffer.append(Character.toTitleCase(ch));
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.