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

de.undercouch.citeproc.LocaleProvider Maven / Gradle / Ivy

package de.undercouch.citeproc;

/**
 * Provides the serialized XML representation for a locale
 * @author Michel Kraemer
 */
public interface LocaleProvider {
    /**
     * Retrieves the serialized XML representation for a given locale
     * @param lang the locale identifier (e.g. "en" or "en-GB")
     * @return the serializes XML of the given locale or null if there is
     * no such locale
     */
    String retrieveLocale(String lang);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy