|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object de.tomshut.util.text.CharacterUtil
public class CharacterUtil
Method Summary | |
---|---|
static boolean |
isDigit(char ch)
Provides a high performance implementation of the Character method |
static boolean |
isHexDigit(char ch)
Checks if the character is a hexadecimal digit (i.e. a digit, a-f, or A-F) |
static boolean |
isJavaIdentifierPart(char ch)
Provides a high performance implementation of the Character method |
static boolean |
isJavaIdentifierStart(char ch)
Provides a high performance implementation of the Character method |
static boolean |
isLetter(char ch)
Provides a high performance implementation of the Character method |
static boolean |
isLetterOrDigit(char ch)
Provides a high performance implementation of the Character method |
static boolean |
isLowerCase(char ch)
Provides a high performance implementation of the Character method |
static boolean |
isSpaceChar(char ch)
Provides a high performance implementation of the Character method |
static boolean |
isTitleCase(char ch)
Provides a high performance implementation of the Character method |
static boolean |
isUnicodeIdentifierPart(char ch)
Provides a high performance implementation of the Character method |
static boolean |
isUnicodeIdentifierStart(char ch)
Provides a high performance implementation of the Character method |
static boolean |
isUpperCase(char ch)
Provides a high performance implementation of the Character method |
static boolean |
isWhitespace(char ch)
Provides a high performance implementation of the Character method |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static boolean isDigit(char ch)
Character.isDigit(char)
public static boolean isJavaIdentifierPart(char ch)
Character.isJavaIdentifierPart(char)
public static boolean isJavaIdentifierStart(char ch)
Character.isJavaIdentifierStart(char)
public static boolean isLetter(char ch)
Character.isLetter(char)
public static boolean isLetterOrDigit(char ch)
Character.isLetterOrDigit(char)
public static boolean isLowerCase(char ch)
Character.isLowerCase(char)
public static boolean isSpaceChar(char ch)
Character.isSpaceChar(char)
public static boolean isTitleCase(char ch)
Character.isSpaceChar(char)
public static boolean isUnicodeIdentifierPart(char ch)
Character.isUnicodeIdentifierPart(char)
public static boolean isUnicodeIdentifierStart(char ch)
Character.isUnicodeIdentifierStart(char)
public static boolean isUpperCase(char ch)
Character.isUpperCase(char)
public static boolean isWhitespace(char ch)
Character.isWhitespace(char)
public static boolean isHexDigit(char ch)
ch
- the character to check
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |