Package org.jsoup.internal
      
      Class Normalizer
      java.lang.Object
      
     org.jsoup.internal.Normalizer
     
       public final class Normalizer extends Object
      
      Util methods for normalizing strings. Jsoup internal use only, please don't depend on this API.
     - 
        Constructor SummaryConstructors
- 
        Method SummaryModifier and TypeMethodDescriptionstatic StringlowerCase(String input) Drops the input string to lower case.static Stringnormalize(String input) Lower-cases and trims the input string.static Stringnormalize(String input, boolean isStringLiteral) Deprecated.internal function; will be removed in a future version.static @Nullable StringxmlSafeTagName(String tagname) Minimal helper to get an otherwise OK HTML name like "foo<bar" to "foo_bar".Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- 
        Constructor Details
- 
        Method Details- 
           lowerCasepublic static String lowerCase(String input) Drops the input string to lower case.
- 
           normalizepublic static String normalize(String input) Lower-cases and trims the input string.
- 
           normalize@Deprecated public static String normalize(String input, boolean isStringLiteral) Deprecated.internal function; will be removed in a future version.If a string literal, just lower case the string; otherwise lower-case and trim.
- 
           xmlSafeTagNamepublic static @Nullable String xmlSafeTagName(String tagname) Minimal helper to get an otherwise OK HTML name like "foo<bar" to "foo_bar".
 
-