Package org.jsoup.internal
Class Normalizer
- java.lang.Object
-
- org.jsoup.internal.Normalizer
-
public final class Normalizer extends java.lang.ObjectUtil methods for normalizing strings. Jsoup internal use only, please don't depend on this API.
-
-
Constructor Summary
Constructors Constructor Description Normalizer()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.StringlowerCase(java.lang.String input)Drops the input string to lower case.static java.lang.Stringnormalize(java.lang.String input)Lower-cases and trims the input string.static java.lang.Stringnormalize(java.lang.String input, boolean isStringLiteral)If a string literal, just lower case the string; otherwise lower-case and trim.
-
-
-
Method Detail
-
lowerCase
public static java.lang.String lowerCase(java.lang.String input)
Drops the input string to lower case.
-
normalize
public static java.lang.String normalize(java.lang.String input)
Lower-cases and trims the input string.
-
normalize
public static java.lang.String normalize(java.lang.String input, boolean isStringLiteral)If a string literal, just lower case the string; otherwise lower-case and trim.
-
-