コード例 #1
0
 /**
  * Convenience method for {@link Character#isDigit(char)}.
  *
  * @param c the character to test.
  * @return true if so, false if not.
  */
 protected boolean isDigit(char c) {
   return Character.isDigit(c);
 }