public enum DocumentLanguage extends Enum<DocumentLanguage>
| Enum Constant and Description |
|---|
ARABIC
Arabic
|
ARMENIAN
Armenian
|
CHINESE
Chinese
|
DANISH
Danish
|
DUTCH
Dutch
|
ENGLISH
English
|
FINNISH
Finnish
|
FRENCH
French
|
GERMAN
German
|
HUNGARIAN
Hungarian
|
ITALIAN
Italian
|
NORWEGIAN
Norwegian
|
PORTUGUESE
Portuguese
|
ROMANIAN
Romanian
|
RUSSIAN
Russian
|
SERBIAN
Serbian
|
SPANISH
Spanish
|
SWEDISH
Swedish
|
TAMIL
Tamil
|
TURKISH
Turkish
|
YIDDISH
Yiddish
|
| Modifier and Type | Method and Description |
|---|---|
static DocumentLanguage |
getLanguage(Locale locale)
Retrieve the
DocumentLanguage for a given Locale. |
Locale |
getLocale() |
String |
toString() |
static DocumentLanguage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentLanguage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentLanguage ARABIC
public static final DocumentLanguage ARMENIAN
public static final DocumentLanguage DANISH
public static final DocumentLanguage DUTCH
public static final DocumentLanguage ENGLISH
public static final DocumentLanguage FINNISH
public static final DocumentLanguage FRENCH
public static final DocumentLanguage GERMAN
public static final DocumentLanguage HUNGARIAN
public static final DocumentLanguage ITALIAN
public static final DocumentLanguage NORWEGIAN
public static final DocumentLanguage PORTUGUESE
public static final DocumentLanguage ROMANIAN
public static final DocumentLanguage RUSSIAN
public static final DocumentLanguage SERBIAN
public static final DocumentLanguage SPANISH
public static final DocumentLanguage SWEDISH
public static final DocumentLanguage TAMIL
public static final DocumentLanguage TURKISH
public static final DocumentLanguage YIDDISH
public static final DocumentLanguage CHINESE
public static DocumentLanguage[] values()
for (DocumentLanguage c : DocumentLanguage.values()) System.out.println(c);
public static DocumentLanguage valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<DocumentLanguage>public Locale getLocale()
DocumentLanguage as a Localepublic static DocumentLanguage getLanguage(Locale locale)
DocumentLanguage for a given Locale.locale - the localeDocumentLanguageCopyright © 2025 lettuce.io. All rights reserved.