ch.qos.cal10n.util.AnnotationExtractor Maven / Gradle / Ivy
The newest version!
package ch.qos.cal10n.util;
import ch.qos.cal10n.Locale;
/**
* Interface for extracting cal10-related annotation data from an "enumTtype".
* The actual type of the enumType is implementation specific. The basic
* implementation uses an enum Class.
*
* @since 0.8
*/
public interface AnnotationExtractor {
public String getBaseName();
public String[] extractLocaleNames();
public Locale[] extractLocales();
public String extractCharset(java.util.Locale juLocale);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy