Package net.heberling.ismart.asn1.v1_1
Enum LanguageType.EnumType
- java.lang.Object
-
- java.lang.Enum<LanguageType.EnumType>
-
- net.heberling.ismart.asn1.v1_1.LanguageType.EnumType
-
- All Implemented Interfaces:
Serializable,Comparable<LanguageType.EnumType>
- Enclosing class:
- LanguageType
public static enum LanguageType.EnumType extends Enum<LanguageType.EnumType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description arabicenglishhindisimplifiedChinesespanish
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LanguageType.EnumTypevalueOf(String name)Returns the enum constant of this type with the specified name.static LanguageType.EnumType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
simplifiedChinese
public static final LanguageType.EnumType simplifiedChinese
-
english
public static final LanguageType.EnumType english
-
spanish
public static final LanguageType.EnumType spanish
-
arabic
public static final LanguageType.EnumType arabic
-
hindi
public static final LanguageType.EnumType hindi
-
-
Method Detail
-
values
public static LanguageType.EnumType[] 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 (LanguageType.EnumType c : LanguageType.EnumType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LanguageType.EnumType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-