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 Summary
Constructors Constructor Description Normalizer() -
Method Summary
Modifier and Type Method Description static 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)If a string literal, just lower case the string; otherwise lower-case and trim.
-
Constructor Details
-
Normalizer
public Normalizer()
-
-
Method Details
-
lowerCase
Drops the input string to lower case. -
normalize
Lower-cases and trims the input string. -
normalize
If a string literal, just lower case the string; otherwise lower-case and trim.
-