final class Unicode
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
(package private) static char |
DEL
ASCII "DEL" character.
|
(package private) static char |
LINE_SEPARATOR
Unicode line separator character, must be encoded in some contexts.
|
(package private) static char |
MAX_ASCII
Highest ASCII (usually) valid ASCII char.
|
(package private) static char |
MAX_C1_CTRL_CHAR
Highest C1 control character.
|
(package private) static char |
NEL
"Next Line" C1 control character.
|
(package private) static int |
NON_CHAR_MASK
Bit-mask for Unicode non-characaters (XXfffe and XXffff).
|
(package private) static char |
PARAGRAPH_SEPARATOR
Unicode paragraph separator character, must be encoded in some contexts.
|
Modifier | Constructor and Description |
---|---|
private |
Unicode()
No instances.
|
Modifier and Type | Method and Description |
---|---|
(package private) static boolean |
isNonCharacter(int cp)
Returns true if the argument is not a character according to the Unicode
standard.
|
static final char MAX_ASCII
static final char DEL
static final char NEL
static final char MAX_C1_CTRL_CHAR
static final char LINE_SEPARATOR
static final char PARAGRAPH_SEPARATOR
static final int NON_CHAR_MASK
static boolean isNonCharacter(int cp)
cp
- the unicode code-point to checkcp
is not a character.