MCPcopy Create free account
hub / github.com/banq/jdonframework / isDigit

Method isDigit

src/main/java/com/jdon/util/UtilValidate.java:291–293  ·  view source on GitHub ↗

Returns true if character c is a digit (0 .. 9).

(char c)

Source from the content-addressed store, hash-verified

289
290 /** Returns true if character c is a digit (0 .. 9). */
291 public static boolean isDigit(char c) {
292 return Character.isDigit(c);
293 }
294
295 /** Returns true if character c is a letter or digit. */
296 public static boolean isLetterOrDigit(char c) {

Callers 2

isIntegerMethod · 0.95
isFloatMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected