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

Method javaLetter

corpus/java/training/guava/base/CharMatcher.java:143–145  ·  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

141 * @since 19.0 (since 1.0 as constant {@code JAVA_LETTER})
142 */
143 public static CharMatcher javaLetter() {
144 return JavaLetter.INSTANCE;
145 }
146
147 /**
148 * 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