|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.rim.device.api.util.CharacterUtilities
public final class CharacterUtilities
Retrieves Unicode attributes for characters.
Method Summary | ||
---|---|---|
static char |
getOriginal(char ch)
Gets the first character in a decomposition, recursively. |
|
static boolean |
isDigit(char aChar)
Determines if the specified character is a digit. |
|
static boolean |
isISOControl(char aChar)
Determines if the specified character is a control character. |
|
static boolean |
isLetter(char aChar)
Determines if the specified character is a letter. |
|
static boolean |
isLowerCase(char aChar)
Determines if the specified character is a lowercase character. |
|
static boolean |
isPunctuation(char aChar)
Determines if the specified character is punctuation. |
|
static boolean |
isSpaceChar(char aChar)
Determines if the specified character is a separator. |
|
static boolean |
isSymbol(char aChar)
Determines if the specified character is a symbol. |
|
static boolean |
isUpperCase(char aChar)
Determines if the specified character is an uppercase character. |
|
static boolean |
isWhitespace(char c)
Determines if the supplied character should be considered white space. |
|
static char |
toLowerCase(char aChar)
Converts character to lower case (handles BMP characters only). |
|
static char |
toUpperCase(char aChar)
Converts character to upper case (handles BMP characters only). |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static char getOriginal(char ch)
You can use this method for stripping accents off characters. For example, U+00E9 would return U+0065. U+1EDA would return U+004F.
ch
- Character to use as source.
StringUtilities.convertToOriginal(StringBuffer, int, int)
public static boolean isLowerCase(char aChar)
aChar
- the character to be tested.
public static boolean isUpperCase(char aChar)
aChar
- the character to be tested.
public static boolean isSymbol(char aChar)
aChar
- the character to be tested.
public static boolean isPunctuation(char aChar)
aChar
- the character to be tested.
public static boolean isLetter(char aChar)
aChar
- the character to be tested.
public static boolean isISOControl(char aChar)
ch
- the character to be tested.
public static boolean isSpaceChar(char aChar)
aChar
- the character to be tested.
public static final boolean isWhitespace(char c)
This method considers as white space characters: newlines, carriage returns, tabs, non-breaking spaces, zero-width spaces, CJK spaces, spaces.
Sub-classes may override this method to provide a wider (or more restricted) class of white-space characters.
c
- Character to test.
public static boolean isDigit(char aChar)
ch
- the character to be tested.
public static char toLowerCase(char aChar)
aChar
- the character to be converted.
public static char toUpperCase(char aChar)
aChar
- the character to be converted.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright 1999-2011 Research In Motion Limited. 295 Phillip Street, Waterloo, Ontario, Canada, N2L 3W8. All Rights Reserved.
Java is a trademark of Oracle America Inc. in the US and other countries.
Legal