Android Char Value Check isNumber(char c)

Here you can find the source of isNumber(char c)

Description

is Number

Declaration

public static boolean isNumber(char c) 

Method Source Code

//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*/
}

Related

  1. getCharType(char c)
  2. isAlef(char c)
  3. isArabic(char c)
  4. isHah(char c)
  5. isLatin(char c)
  6. isTashekil(char c)
  7. isTatweel(char c)
  8. isYeh(char c)
  9. isLetter(char ch)