Package | Description |
---|---|
com.ibm.icu.text |
Extensions and enhancements to java.text to support unicode transforms, UnicodeSet, surrogate char utilities, UCA collation, normalization, break iteration (rule and dictionary based), enhanced number format, international string searching, and arabic shaping.
|
Modifier and Type | Class and Description |
---|---|
class |
FilteredNormalizer2
Normalization filtered by a UnicodeSet.
|
Modifier and Type | Method and Description |
---|---|
static Normalizer2 |
Normalizer2.getInstance(InputStream data,
String name,
Normalizer2.Mode mode)
Returns a Normalizer2 instance which uses the specified data file
(an ICU data file if data=null, or else custom binary data)
and which composes or decomposes text according to the specified mode.
|
static Normalizer2 |
Normalizer2.getNFCInstance()
Returns a Normalizer2 instance for Unicode NFC normalization.
|
static Normalizer2 |
Normalizer2.getNFDInstance()
Returns a Normalizer2 instance for Unicode NFD normalization.
|
static Normalizer2 |
Normalizer2.getNFKCCasefoldInstance()
Returns a Normalizer2 instance for Unicode toNFKC_Casefold() normalization
which is equivalent to applying the NFKC_Casefold mappings and then NFC.
|
static Normalizer2 |
Normalizer2.getNFKCInstance()
Returns a Normalizer2 instance for Unicode NFKC normalization.
|
static Normalizer2 |
Normalizer2.getNFKCSimpleCasefoldInstance()
Returns a Normalizer2 instance for a variant of Unicode toNFKC_Casefold() normalization
which is equivalent to applying the NFKC_Simple_Casefold mappings and then NFC.
|
static Normalizer2 |
Normalizer2.getNFKDInstance()
Returns a Normalizer2 instance for Unicode NFKD normalization.
|
protected abstract Normalizer2 |
Normalizer.Mode.getNormalizer2(int options)
Deprecated.
This API is ICU internal only.
|
Constructor and Description |
---|
FilteredNormalizer2(Normalizer2 n2,
UnicodeSet filterSet)
Constructs a filtered normalizer wrapping any Normalizer2 instance
and a filter set.
|
Copyright © 2016 Unicode, Inc. and others.