Go to the source code of this file.
|  | 
| const long | DIGIT = 0x00000001 | 
|  | digit 
 | 
| const long | UPPER = 0x00000002 | 
|  | upper case alpha letter 
 | 
| const long | LOWER = 0x00000004 | 
|  | lower case alpha letter 
 | 
| const long | TITLE_CASE = 0x00000008 | 
|  | title case alpha letter 
 | 
| const long | ALPHA = 0x0000000E | 
|  | any alpha, ALPHA = UPPER | LOWER | TITLE_CASE 
 | 
| const long | CONTROL = 0x00000010 | 
|  | control character 
 | 
| const long | PRINTABLE = 0x00000020 | 
|  | printable character 
 | 
| const long | BASE_FORM = 0x00000040 | 
|  | base form 
 | 
| const long | LETTER = 0x00000080 | 
|  | any UnicodeType::..._LETTER. 
 |