Uses of Class
com.ibm.icu.text.Normalizer2
-
Packages that use Normalizer2 Package Description com.ibm.icu.impl com.ibm.icu.impl.coll 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. -
-
Uses of Normalizer2 in com.ibm.icu.impl
Subclasses of Normalizer2 in com.ibm.icu.impl Modifier and Type Class Description static class
Norm2AllModes.ComposeNormalizer2
static class
Norm2AllModes.DecomposeNormalizer2
static class
Norm2AllModes.FCDNormalizer2
static class
Norm2AllModes.NoopNormalizer2
static class
Norm2AllModes.Normalizer2WithImpl
Fields in com.ibm.icu.impl declared as Normalizer2 Modifier and Type Field Description private static Normalizer2
UTS46. uts46Norm2
Methods in com.ibm.icu.impl that return Normalizer2 Modifier and Type Method Description static Normalizer2
Norm2AllModes. getFCDNormalizer2()
Gets the FCD normalizer, with the FCD data initialized. -
Uses of Normalizer2 in com.ibm.icu.impl.coll
Fields in com.ibm.icu.impl.coll declared as Normalizer2 Modifier and Type Field Description private Normalizer2
CollationBuilder. fcd
private Normalizer2
CollationRuleParser. nfc
private Normalizer2
CollationBuilder. nfd
private Normalizer2
CollationRuleParser. nfd
-
Uses of Normalizer2 in com.ibm.icu.text
Subclasses of Normalizer2 in com.ibm.icu.text Modifier and Type Class Description class
FilteredNormalizer2
Normalization filtered by a UnicodeSet.Fields in com.ibm.icu.text declared as Normalizer2 Modifier and Type Field Description (package private) static Normalizer2
SourceTargetUtility. NFC
private Normalizer2
CanonicalIterator. nfd
private Normalizer2
StringSearch. nfd_
private static Normalizer2
SpoofChecker. nfdNormalizer
private Normalizer2
FilteredNormalizer2. norm2
private Normalizer2
NormalizationTransliterator. norm2
(package private) Normalizer2
NormalizationTransliterator.NormalizingTransform. norm2
private Normalizer2
Normalizer. norm2
private Normalizer2
Normalizer.ModeImpl. normalizer2
Fields in com.ibm.icu.text with type parameters of type Normalizer2 Modifier and Type Field Description (package private) static java.util.Map<Normalizer2,SourceTargetUtility>
NormalizationTransliterator. SOURCE_CACHE
Methods in com.ibm.icu.text that return Normalizer2 Modifier and Type Method Description private static Normalizer2
Normalizer. getComposeNormalizer2(boolean compat, int options)
private static Normalizer2
Normalizer. getDecomposeNormalizer2(boolean compat, int options)
static Normalizer2
Normalizer2. getInstance(java.io.InputStream data, java.lang.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 Normalizer2
Normalizer.FCDMode. getNormalizer2(int options)
protected abstract Normalizer2
Normalizer.Mode. getNormalizer2(int options)
Deprecated.This API is ICU internal only.protected Normalizer2
Normalizer.NFCMode. getNormalizer2(int options)
protected Normalizer2
Normalizer.NFDMode. getNormalizer2(int options)
protected Normalizer2
Normalizer.NFKCMode. getNormalizer2(int options)
protected Normalizer2
Normalizer.NFKDMode. getNormalizer2(int options)
protected Normalizer2
Normalizer.NONEMode. getNormalizer2(int options)
Methods in com.ibm.icu.text with parameters of type Normalizer2 Modifier and Type Method Description private static boolean
AlphabeticIndex. isOneLabelBetterThanOther(Normalizer2 nfkdNormalizer, java.lang.String one, java.lang.String other)
Returns true if one index character string is "better" than the other.Constructors in com.ibm.icu.text with parameters of type Normalizer2 Constructor Description FilteredNormalizer2(Normalizer2 n2, UnicodeSet filterSet)
Constructs a filtered normalizer wrapping any Normalizer2 instance and a filter set.ModeImpl(Normalizer2 n2)
NormalizationTransliterator(java.lang.String id, Normalizer2 n2)
Constructs a transliterator.NormalizingTransform(Normalizer2 norm2)
SourceTargetUtility(Transform<java.lang.String,java.lang.String> transform, Normalizer2 normalizer)
-