public class ASCIIUtil extends Object
Constructor and Description |
---|
ASCIIUtil() |
Modifier and Type | Method and Description |
---|---|
static boolean |
isHex(int c)
Check whether the supplied character is a Hexadecimal character.
|
static boolean |
isLetter(int c)
Checks whether the supplied character is a letter.
|
static boolean |
isLetterOrNumber(int c)
Checks whether the supplied character is a letter or number.
|
static boolean |
isLowerCaseLetter(int c)
Checks whether the supplied character is an lower-case letter.
|
static boolean |
isNumber(int c)
Checks whether the supplied character is a number
|
static boolean |
isUpperCaseLetter(int c)
Checks whether the supplied character is an upper-case letter.
|
public static boolean isLetterOrNumber(int c)
isLetter(int)
,
isNumber(int)
public static boolean isLetter(int c)
public static boolean isUpperCaseLetter(int c)
public static boolean isLowerCaseLetter(int c)
public static boolean isNumber(int c)
public static boolean isHex(int c)
c
- true
if c is a hexadecimal character, false
otherwise.Copyright © 2015-2019 Eclipse Foundation. All Rights Reserved.