Module org.apache.wicket.core
Package org.apache.wicket.markup.parser
Enum Class IXmlPullParser.HttpTagType
java.lang.Object
java.lang.Enum<IXmlPullParser.HttpTagType>
org.apache.wicket.markup.parser.IXmlPullParser.HttpTagType
- All Implemented Interfaces:
Serializable
,Comparable<IXmlPullParser.HttpTagType>
,Constable
- Enclosing interface:
- IXmlPullParser
The last element found
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionTag body in between two tags<!<!<!<!<!next() must be called at least once for the Type to be valid<?...all other tags which look like <!..<name ...> -
Method Summary
Modifier and TypeMethodDescriptionstatic IXmlPullParser.HttpTagType
Returns the enum constant of this class with the specified name.static IXmlPullParser.HttpTagType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NOT_INITIALIZED
next() must be called at least once for the Type to be valid -
TAG
<name ...> -
BODY
Tag body in between two tags -
COMMENT
<!-- ... --> -
CONDITIONAL_COMMENT
<!--[if ] ... --> -
CONDITIONAL_COMMENT_ENDIF
<![endif]--> -
CDATA
<![CDATA[ .. ]]> -
PROCESSING_INSTRUCTION
<?...> -
DOCTYPE
<!DOCTYPE ...> -
SPECIAL_TAG
all other tags which look like <!.. >
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-