Class 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 NFKC
      static java.lang.String normalize​(java.lang.CharSequence source, Normalizer.Form form)
      Normalize the string using the specified Form
      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
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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