Package com.neovisionaries.i18n
Enum LanguageAlpha3Code.Usage
- java.lang.Object
-
- java.lang.Enum<LanguageAlpha3Code.Usage>
-
- com.neovisionaries.i18n.LanguageAlpha3Code.Usage
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LanguageAlpha3Code.Usage>
- Enclosing class:
- LanguageAlpha3Code
public static enum LanguageAlpha3Code.Usage extends java.lang.Enum<LanguageAlpha3Code.Usage>
The usage of this language code.- Since:
- 1.1
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BIBLIOGRAPHY
Code for bibliographic applications (ISO 639-2/B).COMMON
For all applications including both terminology and bibliographic applications.TERMINOLOGY
Code for terminology applications (ISO 639-2/T).
-
Constructor Summary
Constructors Modifier Constructor Description private
Usage()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LanguageAlpha3Code.Usage
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LanguageAlpha3Code.Usage[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TERMINOLOGY
public static final LanguageAlpha3Code.Usage TERMINOLOGY
Code for terminology applications (ISO 639-2/T).
-
BIBLIOGRAPHY
public static final LanguageAlpha3Code.Usage BIBLIOGRAPHY
Code for bibliographic applications (ISO 639-2/B).
-
COMMON
public static final LanguageAlpha3Code.Usage COMMON
For all applications including both terminology and bibliographic applications.
-
-
Method Detail
-
values
public static LanguageAlpha3Code.Usage[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LanguageAlpha3Code.Usage c : LanguageAlpha3Code.Usage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LanguageAlpha3Code.Usage valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-