Enum LanguageType.EnumType
- java.lang.Object
-
- java.lang.Enum<LanguageType.EnumType>
-
- net.heberling.ismart.asn1.v1_1.entity.LanguageType.EnumType
-
- All Implemented Interfaces:
Serializable,Comparable<LanguageType.EnumType>
- Enclosing class:
- LanguageType
public static enum LanguageType.EnumType extends Enum<LanguageType.EnumType>
-
-
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
-
thai
public static final LanguageType.EnumType thai
-
english
public static final LanguageType.EnumType english
-
china
public static final LanguageType.EnumType china
-
de
public static final LanguageType.EnumType de
-
fr
public static final LanguageType.EnumType fr
-
es
public static final LanguageType.EnumType es
-
nl
public static final LanguageType.EnumType nl
-
nn
public static final LanguageType.EnumType nn
-
da
public static final LanguageType.EnumType da
-
sv
public static final LanguageType.EnumType sv
-
it
public static final LanguageType.EnumType it
-
pt
public static final LanguageType.EnumType pt
-
pl
public static final LanguageType.EnumType pl
-
el
public static final LanguageType.EnumType el
-
fi
public static final LanguageType.EnumType fi
-
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
-
-