The Unicoding class object maintains information on the Unicode character coding.
inherits
Behaviour supers: All
variables
Bitmap for digit predicate.
Bitmap for letter predicate.
Bitmap for lower predicate.
Bitmap for punctuation predicate.
Bitmap for space predicate.
Bitmap for upper predicate.
methods
protected ByteArray loadPredicateSet String predicate alternative selector alt_sel; |
Load and return the predicate set for the predicate on Unicode characters. If it can not be located, the alt_sel is used to extract part of the information needed from the USASCIIEncoding.
boolean isAlpha char c; |
Undocumented.
boolean isDigit char c; |
Return TRUE iff the character c is a digit according to the encoding of the receiving string.
boolean isLower char c; |
Undocumented.
boolean isPunct char c; |
Undocumented.
boolean isSpace char c; |
Undocumented.
boolean isUpper char c; |
Undocumented.
char toLower char c; |
Undocumented.
char toTitle char c; |
Undocumented.
char toUpper char c; |
Undocumented.
int digitValue char c; |
Undocumented.
int alphaValue char c; |
Undocumented.
inherits
Behaviour supers: All