All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jsoup.internal.Normalizer Maven / Gradle / Ivy

There is a newer version: 4.15.102
Show newest version
package org.jsoup.internal;

import java.util.Locale;

/**
 * Util methods for normalizing strings. Jsoup internal use only, please don't depend on this API.
 */
public final class Normalizer {

    public static String lowerCase(final String input) {
        return input != null ? input.toLowerCase(Locale.ENGLISH) : "";
    }

    public static String normalize(final String input) {
        return lowerCase(input).trim();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy