Package org.xmlet.htmlapifaster
Enum EnumTypeSimpleContentType
- java.lang.Object
-
- java.lang.Enum<EnumTypeSimpleContentType>
-
- org.xmlet.htmlapifaster.EnumTypeSimpleContentType
-
- All Implemented Interfaces:
Serializable,Comparable<EnumTypeSimpleContentType>,org.xmlet.xsdasmfaster.classes.infrastructure.EnumInterface<String>
public enum EnumTypeSimpleContentType extends Enum<EnumTypeSimpleContentType> implements org.xmlet.xsdasmfaster.classes.infrastructure.EnumInterface<String>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TEXT_ASATEXT_ASPTEXT_HTMLTEXT_PLAINTEXT_XML
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static EnumTypeSimpleContentTypevalueOf(String name)Returns the enum constant of this type with the specified name.static EnumTypeSimpleContentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TEXT_ASP
public static final EnumTypeSimpleContentType TEXT_ASP
-
TEXT_ASA
public static final EnumTypeSimpleContentType TEXT_ASA
-
TEXT_HTML
public static final EnumTypeSimpleContentType TEXT_HTML
-
TEXT_PLAIN
public static final EnumTypeSimpleContentType TEXT_PLAIN
-
TEXT_XML
public static final EnumTypeSimpleContentType TEXT_XML
-
-
Method Detail
-
values
public static EnumTypeSimpleContentType[] 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 (EnumTypeSimpleContentType c : EnumTypeSimpleContentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EnumTypeSimpleContentType 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
-
-