Constants' Details |
DIGIT
const long DIGIT = 0x00000001;
- Description
- digit
|
|
UPPER
const long UPPER = 0x00000002;
- Description
- upper case alpha letter
|
|
LOWER
const long LOWER = 0x00000004;
- Description
- lower case alpha letter
|
|
TITLE_CASE
const long TITLE_CASE = 0x00000008;
- Description
- title case alpha letter
|
|
ALPHA
const long ALPHA = 0x0000000E;
- Description
- any alpha, ALPHA = UPPER | LOWER | TITLE_CASE
|
|
CONTROL
const long CONTROL = 0x00000010;
- Description
- control character
|
|
PRINTABLE
const long PRINTABLE = 0x00000020;
- Description
- printable character
|
|
BASE_FORM
const long BASE_FORM = 0x00000040;
- Description
- base form
|
|
LETTER
const long LETTER = 0x00000080;
- Description
- any UnicodeType::..._LETTER.
Note that a LETTER must not necessarily be ALPHA
|
|
Copyright © 1995, 2012, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.