Home | History | Annotate | Download | only in base

Lines Matching defs:DIGIT

146    * Determines whether a character is a digit according to
150 public static final CharMatcher DIGIT = new RangesMatcher(
151 "CharMatcher.DIGIT", ZEROES.toCharArray(), NINES.toCharArray());
154 * Determines whether a character is a digit according to {@linkplain Character#isDigit(char)
176 * Determines whether a character is a letter or digit according to {@linkplain