Package org.xmlet.htmlapifaster
Enum EnumTypeScriptType
- java.lang.Object
-
- java.lang.Enum<EnumTypeScriptType>
-
- org.xmlet.htmlapifaster.EnumTypeScriptType
-
- All Implemented Interfaces:
Serializable,Comparable<EnumTypeScriptType>,org.xmlet.xsdasmfaster.classes.infrastructure.EnumInterface<String>
public enum EnumTypeScriptType extends Enum<EnumTypeScriptType> implements org.xmlet.xsdasmfaster.classes.infrastructure.EnumInterface<String>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static EnumTypeScriptTypevalueOf(String name)Returns the enum constant of this type with the specified name.static EnumTypeScriptType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APPLICATION_ECMASCRIPT
public static final EnumTypeScriptType APPLICATION_ECMASCRIPT
-
APPLICATION_JAVASCRIPT
public static final EnumTypeScriptType APPLICATION_JAVASCRIPT
-
APPLICATION_X_JAVASCRIPT
public static final EnumTypeScriptType APPLICATION_X_JAVASCRIPT
-
APPLICATION_X_ECMASCRIPT
public static final EnumTypeScriptType APPLICATION_X_ECMASCRIPT
-
TEXT_ECMASCRIPT
public static final EnumTypeScriptType TEXT_ECMASCRIPT
-
TEXT_JAVASCRIPT
public static final EnumTypeScriptType TEXT_JAVASCRIPT
-
TEXT_JAVASCRIPT1_0
public static final EnumTypeScriptType TEXT_JAVASCRIPT1_0
-
TEXT_JAVASCRIPT1_1
public static final EnumTypeScriptType TEXT_JAVASCRIPT1_1
-
TEXT_JAVASCRIPT1_2
public static final EnumTypeScriptType TEXT_JAVASCRIPT1_2
-
TEXT_JAVASCRIPT1_3
public static final EnumTypeScriptType TEXT_JAVASCRIPT1_3
-
TEXT_JAVASCRIPT1_4
public static final EnumTypeScriptType TEXT_JAVASCRIPT1_4
-
TEXT_JAVASCRIPT1_5
public static final EnumTypeScriptType TEXT_JAVASCRIPT1_5
-
TEXT_JSCRIPT
public static final EnumTypeScriptType TEXT_JSCRIPT
-
TEXT_LIVESCRIPT
public static final EnumTypeScriptType TEXT_LIVESCRIPT
-
TEXT_X_JAVASCRIPT
public static final EnumTypeScriptType TEXT_X_JAVASCRIPT
-
TEXT_X_ECMASCRIPT
public static final EnumTypeScriptType TEXT_X_ECMASCRIPT
-
-
Method Detail
-
values
public static EnumTypeScriptType[] 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 (EnumTypeScriptType c : EnumTypeScriptType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EnumTypeScriptType 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
-
-