public static enum ISO639.LanguageType extends Enum<ISO639.LanguageType>
enum is used to categorize ISO639 instances.| Enum Constant and Description |
|---|
GROUP
Language group entries
|
HISTORICAL
Historical language entries
|
NON_LANGUAGE
Non-language entries
|
NORMAL
Normal entries
|
UNDEFINED
The "undefined" language entry
ISO639.UND |
| Modifier and Type | Method and Description |
|---|---|
static ISO639.LanguageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ISO639.LanguageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ISO639.LanguageType GROUP
public static final ISO639.LanguageType HISTORICAL
public static final ISO639.LanguageType NON_LANGUAGE
public static final ISO639.LanguageType NORMAL
public static final ISO639.LanguageType UNDEFINED
ISO639.UNDpublic static ISO639.LanguageType[] values()
for (ISO639.LanguageType c : ISO639.LanguageType.values()) System.out.println(c);
public static ISO639.LanguageType 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 nullCopyright © 2024. All rights reserved.