Method isLetter(char ch)
Return type: boolean
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 if (!Character.isLetter(text.charAt(start)))
2 while (c != -1 && Character.isLetter((char) c)) {
3 if (!Character.isLetter(c)) {
4 if (!Character. isLetter(tagName.charAt(0)))
5 if (!Character.isLetter(id.charAt(0)) || (id.indexOf(' ') != -1)) {
6 if ( !Character.isLetter(reducedText.charAt(i)) &&
7 if (Character.isLetter(tk)) {
8 if (Character.isLetter(ch) || ch == '_' || ch == ':') {
9 if (!Character.isLetter(s.charAt(i)) &&
10 if (letters && numbers && Character.isLetterOrDigit(ch) || letters && Character.isLetter(ch) || numbers && Character.isDigit(ch) || !letters && !numbers)
11 Character.isLetter(rDir.charAt(0)) && ':' == rDir.charAt(1)) {
12 if(Character.isLetter(c)) {
13 if( Character.isLetter( (char)id ) )
14 if( Character.isLetter( (char)id ) )
15 while (!Character.isLetter (descriptor.charAt (index)))
16 if((Character.isLetter(keyChar) && ev.isAltDown() == false)) {
17 if (token.length() == 1 && Character.isLetter(token.charAt(0))
18 fail = !Character.isLetter(ch);
19 if(!(Character.isLetter(c) || c == '_' || c == ':')) {
20 && Character.isLetter(line.charAt(0)) // no # (
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.