| java.lang.Object | |
| ↳ | sun.text.Normalizer |
This Normalizer is for Unicode 3.2 support for IDNA only. Developers should not use this class.@ since 1.6
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| int | UNICODE_3_2 | Option to select Unicode 3.2 (without corrigendum 4 corrections) for normalization. | |||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Returns the combining class of the given character
| |||||||||||
Determines if the given sequence of char values is normalized.
| |||||||||||
Normalize a sequence of char values.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Option to select Unicode 3.2 (without corrigendum 4 corrections) for normalization.
Returns the combining class of the given character
| ch | character to retrieve combining class of |
|---|
Determines if the given sequence of char values is normalized.
| src | The sequence of char values to be checked. |
|---|---|
| form | The normalization form; one of
NFC,
NFD,
NFKC,
NFKD |
| option | The normalization option;
UNICODE_3_2 |
| NullPointerException | If src or form
is null.
|
|---|
Normalize a sequence of char values. The sequence will be normalized according to the specified normalization from.
| src | The sequence of char values to normalize. |
|---|---|
| form | The normalization form; one of
NFC,
NFD,
NFKC,
NFKD |
| option | The normalization option;
UNICODE_3_2 |
| NullPointerException | If src or form
is null.
|
|---|