Package org.apache.abdera.i18n.text
Class Normalizer
- java.lang.Object
-
- org.apache.abdera.i18n.text.Normalizer
-
public final class Normalizer extends java.lang.Object
Performs Unicode Normalization (Form D,C,KD and KC)
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Normalizer.Form
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.String
normalize(java.lang.CharSequence source)
Normalize the string using NFKCstatic java.lang.String
normalize(java.lang.CharSequence source, Normalizer.Form form)
Normalize the string using the specified Formstatic java.lang.String
normalize(java.lang.CharSequence source, Normalizer.Form form, java.lang.StringBuilder buf)
Normalize the string into the given StringBuilder using the given Form
-
-
-
Method Detail
-
normalize
public static java.lang.String normalize(java.lang.CharSequence source)
Normalize the string using NFKC
-
normalize
public static java.lang.String normalize(java.lang.CharSequence source, Normalizer.Form form)
Normalize the string using the specified Form
-
normalize
public static java.lang.String normalize(java.lang.CharSequence source, Normalizer.Form form, java.lang.StringBuilder buf)
Normalize the string into the given StringBuilder using the given Form
-
-