Here you can find the source of isNumber(char c)
public static boolean isNumber(char c)
//package com.java2s; public class Main { public static boolean isNumber(char c) { return (0x30 <= c && c <= 0x39); }/*w w w . j av a2 s.co m*/ }