MCPcopy Create free account
hub / github.com/antlr/codebuff / javaLetter

Method javaLetter

output/java_guava/1.4.13/CharMatcher.java:158–160  ·  view source on GitHub ↗

Determines whether a character is a letter according to plain Character#isLetter(char) Java's definition. If you only care to match letters of the Latin alphabet, you can use inRange('a', 'z').or(inRange('A', 'Z')). @since 19.0 (since 1.0 as constant JAVA_LETTER)

()

Source from the content-addressed store, hash-verified

156
157
158 public static CharMatcher javaLetter() {
159 return JavaLetter.INSTANCE;
160 }
161
162 /**
163 * Determines whether a character is a letter or digit according to

Callers 1

CharMatcherClass · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected